diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml
index d76b8eef1b..80d332110f 100644
--- a/.github/workflows/test-pr.yml
+++ b/.github/workflows/test-pr.yml
@@ -132,7 +132,7 @@ jobs:
- name: 'Build kevm-pyk'
run: docker exec -u github-user kevm-ci-haskell-${{ matrix.test-suite }}-${{ github.sha }} /bin/bash -c 'make poetry'
- name: 'Build distribution'
- run: docker exec -u github-user kevm-ci-haskell-${{ matrix.test-suite }}-${{ github.sha }} /bin/bash -c 'CXX=clang++-14 poetry -C kevm-pyk run kdist --verbose build -j`nproc` evm-semantics.plugin evm-semantics.haskell evm-semantics.summary'
+ run: docker exec -u github-user kevm-ci-haskell-${{ matrix.test-suite }}-${{ github.sha }} /bin/bash -c 'CXX=clang++-14 poetry -C kevm-pyk run kdist --verbose build -j`nproc` evm-semantics.plugin evm-semantics.haskell evm-semantics.summarize'
- name: 'Run proofs'
run: docker exec -u github-user kevm-ci-haskell-${{ matrix.test-suite }}-${{ github.sha }} /bin/bash -c "make ${{ matrix.test-suite }} PYTEST_ARGS='-vv ${{ matrix.test-args }}' PYTEST_PARALLEL=${{ matrix.parallel }}"
- name: 'Tear down Docker'
diff --git a/Makefile b/Makefile
index 218ad568e2..d5c00adc80 100644
--- a/Makefile
+++ b/Makefile
@@ -77,6 +77,9 @@ test-prove-functional: poetry
test-prove-optimizations: poetry
$(MAKE) -C kevm-pyk/ test-integration PYTEST_ARGS+="-k test_prove_optimizations"
+test-prove-summaries: poetry
+ $(MAKE) -C kevm-pyk/ test-integration PYTEST_ARGS+="-k test_prove_summaries"
+
test-prove-dss: poetry
$(MAKE) -C kevm-pyk/ test-integration PYTEST_ARGS+="-k test_prove_dss"
diff --git a/kevm-pyk/.gitignore b/kevm-pyk/.gitignore
index 700e92b34d..95860fe43c 100644
--- a/kevm-pyk/.gitignore
+++ b/kevm-pyk/.gitignore
@@ -1,5 +1,4 @@
/dist/
__pycache__/
.coverage
-proofs/
-summaries/
\ No newline at end of file
+proofs/
\ No newline at end of file
diff --git a/kevm-pyk/poetry.lock b/kevm-pyk/poetry.lock
index df19e14593..2c9050d214 100644
--- a/kevm-pyk/poetry.lock
+++ b/kevm-pyk/poetry.lock
@@ -470,14 +470,14 @@ testing = ["hatch", "pre-commit", "pytest", "tox"]
[[package]]
name = "filelock"
-version = "3.17.0"
+version = "3.18.0"
description = "A platform independent file lock."
optional = false
python-versions = ">=3.9"
groups = ["main"]
files = [
- {file = "filelock-3.17.0-py3-none-any.whl", hash = "sha256:533dc2f7ba78dc2f0f531fc6c4940addf7b70a481e269a5a3b93be94ffbe8338"},
- {file = "filelock-3.17.0.tar.gz", hash = "sha256:ee4e77401ef576ebb38cd7f13b9b28893194acc20a8e68e18730ba9c0e54660e"},
+ {file = "filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de"},
+ {file = "filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2"},
]
[package.extras]
diff --git a/kevm-pyk/src/kevm_pyk/__main__.py b/kevm-pyk/src/kevm_pyk/__main__.py
index b5308fa9f0..64a76b3e50 100644
--- a/kevm-pyk/src/kevm_pyk/__main__.py
+++ b/kevm-pyk/src/kevm_pyk/__main__.py
@@ -32,10 +32,15 @@
from pyk.proof.tui import APRProofViewer
from pyk.utils import FrozenDict, hash_str, single
-from kevm_pyk.summarizer import batch_summarize
+from kevm_pyk.summarizer import batch_summarize, clear_proofs, summarize
from . import VERSION, config
-from .cli import _create_argument_parser, generate_options, get_argument_type_setter, get_option_string_destination
+from .cli import (
+ _create_argument_parser,
+ generate_options,
+ get_argument_type_setter,
+ get_option_string_destination,
+)
from .gst_to_kore import SORT_ETHEREUM_SIMULATION, filter_gst_keys, gst_to_kore, kore_pgm_to_kore
from .kevm import KEVM, KEVMSemantics, kevm_node_printer
from .kompile import KompileTarget, kevm_kompile
@@ -65,6 +70,7 @@
RunOptions,
SectionEdgeOptions,
ShowKCFGOptions,
+ SummarizeOptions,
VersionOptions,
ViewKCFGOptions,
)
@@ -636,10 +642,14 @@ def exec_kast(options: KastOptions) -> None:
print(output_text)
-def exec_summarize(options: ProveOptions) -> None:
- # TODO: provide options to summarize specific opcodes using `summarize(opcode)`
+def exec_summarize(options: SummarizeOptions) -> None:
# TODO: provide options to analyze a specific proof using `analyze_proof(opcode, node_id)`
- batch_summarize()
+ if options.clear:
+ clear_proofs()
+ if options.opcode is None:
+ batch_summarize()
+ else:
+ summarize(options.opcode)
# Helpers
diff --git a/kevm-pyk/src/kevm_pyk/cli.py b/kevm-pyk/src/kevm_pyk/cli.py
index 5773d2fd5e..e380fe366d 100644
--- a/kevm-pyk/src/kevm_pyk/cli.py
+++ b/kevm-pyk/src/kevm_pyk/cli.py
@@ -77,7 +77,7 @@ def generate_options(args: dict[str, Any]) -> LoggingOptions:
case 'run':
return RunOptions(args)
case 'summarize':
- return ProveOptions(args)
+ return SummarizeOptions(args)
case _:
raise ValueError(f'Unrecognized command: {command}')
@@ -104,7 +104,7 @@ def get_option_string_destination(command: str, option_string: str) -> str:
case 'run':
option_string_destinations = RunOptions.from_option_string()
case 'summarize':
- option_string_destinations = ProveOptions.from_option_string()
+ option_string_destinations = SummarizeOptions.from_option_string()
return option_string_destinations.get(option_string, option_string.replace('-', '_'))
@@ -134,7 +134,7 @@ def func(par: str) -> str:
case 'run':
option_types = RunOptions.get_argument_type()
case 'summarize':
- option_types = ProveOptions.get_argument_type()
+ option_types = SummarizeOptions.get_argument_type()
return option_types.get(option_string, func)
@@ -191,22 +191,27 @@ def _create_argument_parser() -> ArgumentParser:
help='Maximum worker threads to use on a single proof to explore separate branches in parallel.',
)
- command_parser.add_parser(
+ summarize_args = command_parser.add_parser(
'summarize',
help='Summarize an Opcode to execute in a single rewrite step.',
parents=[
kevm_cli_args.logging_args,
- kevm_cli_args.parallel_args,
kevm_cli_args.k_args,
- kevm_cli_args.kprove_args,
- kevm_cli_args.rpc_args,
- kevm_cli_args.bug_report_args,
- kevm_cli_args.smt_args,
- kevm_cli_args.explore_args,
- # kevm_cli_args.spec_args,
- config_args.config_args,
],
)
+ summarize_args.add_argument(
+ 'opcode',
+ type=str,
+ nargs='?',
+ help='Opcode to summarize. If not provided, all supported opcodes will be summarized.',
+ )
+ summarize_args.add_argument(
+ '--clear',
+ dest='clear',
+ default=False,
+ action='store_true',
+ help='Clear all existing proofs and re-run the summarization process.',
+ )
prune_args = command_parser.add_parser(
'prune',
@@ -620,6 +625,23 @@ def get_argument_type() -> dict[str, Callable]:
)
+class SummarizeOptions(LoggingOptions, KOptions):
+ clear: bool
+ opcode: str | None
+
+ @staticmethod
+ def default() -> dict[str, Any]:
+ return {'clear': False, 'opcode': None}
+
+ @staticmethod
+ def from_option_string() -> dict[str, str]:
+ return LoggingOptions.from_option_string() | KOptions.from_option_string()
+
+ @staticmethod
+ def get_argument_type() -> dict[str, Callable]:
+ return LoggingOptions.get_argument_type() | KOptions.get_argument_type()
+
+
class PruneOptions(LoggingOptions, KOptions, SpecOptions):
node: NodeIdLike
@@ -833,7 +855,9 @@ class KEVMCLIArgs(KCLIArgs):
@cached_property
def target_args(self) -> ArgumentParser:
args = ArgumentParser(add_help=False)
- args.add_argument('--target', choices=['llvm', 'haskell', 'haskell-standalone', 'foundry'])
+ args.add_argument(
+ '--target', choices=['llvm', 'llvm-summary', 'haskell', 'haskell-standalone', 'haskell-summary', 'foundry']
+ )
return args
@cached_property
diff --git a/kevm-pyk/src/kevm_pyk/interpreter.py b/kevm-pyk/src/kevm_pyk/interpreter.py
index 77c28ef31b..7f10acd008 100644
--- a/kevm-pyk/src/kevm_pyk/interpreter.py
+++ b/kevm-pyk/src/kevm_pyk/interpreter.py
@@ -1,9 +1,11 @@
from __future__ import annotations
+from subprocess import CalledProcessError
from typing import TYPE_CHECKING
from pyk.kdist import kdist
from pyk.kore.parser import KoreParser
+from pyk.ktool.krun import llvm_interpret_raw
from pyk.utils import run_process_2
from .gst_to_kore import filter_gst_keys, gst_to_kore
@@ -16,18 +18,18 @@
def interpret(gst_data: Any, schedule: str, mode: str, chainid: int, usegas: bool, *, check: bool = True) -> Pattern:
- proc_res = _interpret(gst_data, schedule, mode, chainid, usegas)
+ try:
+ res = _interpret(gst_data, schedule, mode, chainid, usegas, check)
+ except CalledProcessError as err:
+ raise RuntimeError(f'Interpreter failed with status {err.returncode}: {err.stderr}') from err
- if check:
- proc_res.check_returncode()
+ if res.stdout == '':
+ raise RuntimeError(f'Interpreter returned empty stdout: {res.stderr}')
- kore = KoreParser(proc_res.stdout).pattern()
- return kore
+ return KoreParser(res.stdout).pattern()
-def _interpret(gst_data: Any, schedule: str, mode: str, chainid: int, usegas: bool) -> CompletedProcess:
+def _interpret(gst_data: Any, schedule: str, mode: str, chainid: int, usegas: bool, check: bool) -> CompletedProcess:
gst_data_filtered = filter_gst_keys(gst_data)
- interpreter = kdist.get('evm-semantics.llvm') / 'interpreter'
init_kore = gst_to_kore(gst_data_filtered, schedule, mode, chainid, usegas)
- proc_res = run_process_2([str(interpreter), '/dev/stdin', '-1', '/dev/stdout'], input=init_kore.text, check=False)
- return proc_res
+ return llvm_interpret_raw(kdist.get('evm-semantics.llvm-summary'), init_kore.text, check=check)
diff --git a/kevm-pyk/src/kevm_pyk/kdist/plugin.py b/kevm-pyk/src/kevm_pyk/kdist/plugin.py
index 7b236ee3ca..04a09f9a5a 100644
--- a/kevm-pyk/src/kevm_pyk/kdist/plugin.py
+++ b/kevm-pyk/src/kevm_pyk/kdist/plugin.py
@@ -115,12 +115,29 @@ def context(self) -> dict[str, str]:
'syntax_module': 'EDSL',
},
),
- 'summary': KEVMTarget(
+ 'summarize': KEVMTarget(
{
'target': KompileTarget.HASKELL,
'main_file': config.EVM_SEMANTICS_DIR / 'edsl.md',
- 'main_module': 'EDSL-SUM',
- 'syntax_module': 'EDSL-SUM',
+ 'main_module': 'EDSL-SUMMARIZE',
+ 'syntax_module': 'EDSL-SUMMARIZE',
+ },
+ ),
+ 'llvm-summary': KEVMTarget(
+ {
+ 'target': KompileTarget.LLVM,
+ 'main_file': config.EVM_SEMANTICS_DIR / 'driver.md',
+ 'main_module': 'ETHEREUM-SIMULATION-SUMMARY',
+ 'syntax_module': 'ETHEREUM-SIMULATION-SUMMARY',
+ 'optimization': 3,
+ },
+ ),
+ 'haskell-summary': KEVMTarget(
+ {
+ 'target': KompileTarget.HASKELL,
+ 'main_file': config.EVM_SEMANTICS_DIR / 'edsl.md',
+ 'main_module': 'EDSL-SUMMARY',
+ 'syntax_module': 'EDSL-SUMMARY',
},
),
'haskell-standalone': KEVMTarget(
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/driver.md b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/driver.md
index 759ec4d0f6..644d0b46de 100644
--- a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/driver.md
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/driver.md
@@ -9,10 +9,20 @@ requires "evm.md"
requires "optimizations.md"
requires "asm.md"
requires "state-utils.md"
+requires "summaries/summary.k"
+
+module ETHEREUM-SIMULATION-SUMMARY
+ imports ETHEREUM-SIMULATION-PURE
+ imports SUMMARY
+endmodule
module ETHEREUM-SIMULATION
- imports EVM
+ imports ETHEREUM-SIMULATION-PURE
imports EVM-OPTIMIZATIONS
+endmodule
+
+module ETHEREUM-SIMULATION-PURE
+ imports EVM
imports EVM-ASSEMBLY
imports STATE-UTILS
```
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/edsl.md b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/edsl.md
index 1a70df1ba7..b6e7f81e37 100644
--- a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/edsl.md
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/edsl.md
@@ -14,8 +14,14 @@ requires "gas.md"
requires "optimizations.md"
requires "lemmas/lemmas.k"
requires "lemmas/summarization-simplification.k"
+requires "summaries/summary.k"
-module EDSL-SUM
+module EDSL-SUMMARY
+ imports EDSL-PURE
+ imports SUMMARY
+endmodule
+
+module EDSL-SUMMARIZE
imports EDSL-PURE
imports LEMMAS
imports SUMMARIZATION-SIMPLIFICATION
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-add-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-add-2-spec.k
new file mode 100644
index 0000000000..6380748300
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-add-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-ADD-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ ADD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => chop ( ( W0:Int +Int W1:Int ) ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ ADD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => chop ( ( W0:Int +Int W1:Int ) ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-addmod-3-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-addmod-3-spec.k
new file mode 100644
index 0000000000..a211da6ed7
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-addmod-3-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-ADDMOD-3-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ ADDMOD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => ( W0:Int +Int W1:Int ) %Word W2:Int ) : ( ( W1:Int : ( W2:Int : WS:WordStack ) ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gmid < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gmid < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ ADDMOD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => ( W0:Int +Int W1:Int ) %Word W2:Int ) : ( ( W1:Int : ( W2:Int : WS:WordStack ) ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-address-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-address-0-spec.k
new file mode 100644
index 0000000000..f49dbc573d
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-address-0-spec.k
@@ -0,0 +1,116 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-ADDRESS-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-8]:
+
+ ( #next [ ADDRESS ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ ADDRESS ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( WS:WordStack => ( ID_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ ADDRESS ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( WS:WordStack => ( ID_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ AND ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => ( W0:Int &Int W1:Int ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ AND ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => ( W0:Int &Int W1:Int ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-balance-normal-1-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-balance-normal-1-spec.k
new file mode 100644
index 0000000000..c8cc485b0e
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-balance-normal-1-spec.k
@@ -0,0 +1,59 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-BALANCE-NORMAL-1-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-1-TO-10]:
+
+ ( #next [ BALANCE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ( ( W0:Int => BALANCE_CELL:Int ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+
+ ( ACCESSEDACCOUNTS_CELL:Set => ACCESSEDACCOUNTS_CELL:Set |Set SetItem ( ( W0:Int modInt pow160 ) ) )
+
+ ...
+
+ ...
+
+
+
+
+ ACCTID_CELL_CELL
+
+ BALANCE_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+
+ ...
+
+
+ requires ACCTID_CELL_CELL ==Int W0:Int modInt pow160
+[priority(20), label(BASIC-BLOCK-1-TO-10)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-balance-owise-1-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-balance-owise-1-spec.k
new file mode 100644
index 0000000000..739429f04a
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-balance-owise-1-spec.k
@@ -0,0 +1,59 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-BALANCE-OWISE-1-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-1-TO-10]:
+
+ ( #next [ BALANCE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ( ( W0:Int => BALANCE_CELL:Int ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+
+ ( ACCESSEDACCOUNTS_CELL:Set => ACCESSEDACCOUNTS_CELL:Set |Set SetItem ( ( W0:Int modInt pow160 ) ) )
+
+ ...
+
+ ...
+
+
+
+
+ ACCTID_CELL_CELL
+
+ BALANCE_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+
+ ...
+
+
+ requires ACCTID_CELL_CELL ==Int W0:Int modInt pow160
+[priority(20), label(BASIC-BLOCK-1-TO-10)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-blockhash-1-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-blockhash-1-spec.k
new file mode 100644
index 0000000000..d067bba98b
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-blockhash-1-spec.k
@@ -0,0 +1,92 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-BLOCKHASH-1-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ BLOCKHASH ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => #blockhash ( BLOCKHASHES_CELL:List , W0:Int , ( NUMBER_CELL:Int +Int -1 ) , 0 ) ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gblockhash < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+
+ BLOCKHASHES_CELL:List
+
+
+
+ NUMBER_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gblockhash < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-16]:
+
+ ( #next [ BLOCKHASH ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => #blockhash ( BLOCKHASHES_CELL:List , W0:Int , ( NUMBER_CELL:Int +Int -1 ) , 0 ) ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+ BLOCKHASHES_CELL:List
+
+
+
+ NUMBER_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-16)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-byte-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-byte-2-spec.k
new file mode 100644
index 0000000000..bd2fa95004
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-byte-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-BYTE-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ BYTE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => byte ( W0:Int , W1:Int ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-16]:
+
+ ( #next [ BYTE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => byte ( W0:Int , W1:Int ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-16)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-calldatacopy-3-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-calldatacopy-3-spec.k
new file mode 100644
index 0000000000..b53c25cc66
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-calldatacopy-3-spec.k
@@ -0,0 +1,89 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-CALLDATACOPY-3-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-22-TO-21]:
+
+ ( #next [ CALLDATACOPY ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ CALLDATA_CELL:Bytes
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #range ( CALLDATA_CELL:Bytes , W1:Int , W2:Int ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( Gverylow < SCHEDULE_CELL:Schedule > +Int ( Gcopy < SCHEDULE_CELL:Schedule > *Int ( W2:Int up/Int 32 ) ) ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( Gverylow < SCHEDULE_CELL:Schedule > +Int ( Gcopy < SCHEDULE_CELL:Schedule > *Int ( W2:Int up/Int 32 ) ) ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-22-TO-21)]
+
+ rule [BASIC-BLOCK-23-TO-13]:
+
+ ( #next [ CALLDATACOPY ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ CALLDATA_CELL:Bytes
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #range ( CALLDATA_CELL:Bytes , W1:Int , W2:Int ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-23-TO-13)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-calldataload-1-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-calldataload-1-spec.k
new file mode 100644
index 0000000000..24512f56f2
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-calldataload-1-spec.k
@@ -0,0 +1,80 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-CALLDATALOAD-1-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ CALLDATALOAD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ CALLDATA_CELL:Bytes
+
+
+ ( ( W0:Int => #asWord ( #range ( CALLDATA_CELL:Bytes , W0:Int , 32 ) ) ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ CALLDATALOAD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ CALLDATA_CELL:Bytes
+
+
+ ( ( W0:Int => #asWord ( #range ( CALLDATA_CELL:Bytes , W0:Int , 32 ) ) ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-calldatasize-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-calldatasize-0-spec.k
new file mode 100644
index 0000000000..ca68930d31
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-calldatasize-0-spec.k
@@ -0,0 +1,116 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-CALLDATASIZE-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ CALLDATASIZE ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ CALLDATASIZE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ CALLDATA_CELL:Bytes
+
+
+ ( WS:WordStack => ( lengthBytes ( CALLDATA_CELL:Bytes ) : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ CALLDATASIZE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ CALLDATA_CELL:Bytes
+
+
+ ( WS:WordStack => ( lengthBytes ( CALLDATA_CELL:Bytes ) : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ CALLER ] => #halt )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ CALLER ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ CALLER_CELL:Int
+
+
+ ( WS:WordStack => ( CALLER_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ CHAINID ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ CHAINID ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( CHAINID_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+
+
+ CHAINID_CELL:Int
+
+ ...
+
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ CHAINID ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( CHAINID_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+
+
+ CHAINID_CELL:Int
+
+ ...
+
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ CODECOPY ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ PROGRAM_CELL:Bytes
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #range ( PROGRAM_CELL:Bytes , W1:Int , W2:Int ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( Gverylow < SCHEDULE_CELL:Schedule > +Int ( Gcopy < SCHEDULE_CELL:Schedule > *Int ( W2:Int up/Int 32 ) ) ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( Gverylow < SCHEDULE_CELL:Schedule > +Int ( Gcopy < SCHEDULE_CELL:Schedule > *Int ( W2:Int up/Int 32 ) ) ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-22-TO-21)]
+
+ rule [BASIC-BLOCK-23-TO-13]:
+
+ ( #next [ CODECOPY ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ PROGRAM_CELL:Bytes
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #range ( PROGRAM_CELL:Bytes , W1:Int , W2:Int ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-23-TO-13)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-codesize-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-codesize-0-spec.k
new file mode 100644
index 0000000000..85218bf5d9
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-codesize-0-spec.k
@@ -0,0 +1,116 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-CODESIZE-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ CODESIZE ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ CODESIZE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ PROGRAM_CELL:Bytes
+
+
+ ( WS:WordStack => ( lengthBytes ( PROGRAM_CELL:Bytes ) : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ CODESIZE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ PROGRAM_CELL:Bytes
+
+
+ ( WS:WordStack => ( lengthBytes ( PROGRAM_CELL:Bytes ) : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ COINBASE ] => #halt )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ COINBASE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ( WS:WordStack => ( COINBASE_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+
+ COINBASE_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ DIFFICULTY ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DIFFICULTY ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( DIFFICULTY_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+
+
+ DIFFICULTY_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ DIFFICULTY ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( DIFFICULTY_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+
+ DIFFICULTY_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ DIV ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W0:Int /Word W1:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Glow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Glow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ DIV ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W0:Int /Word W1:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-dup-1-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-dup-1-spec.k
new file mode 100644
index 0000000000..767e060392
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-dup-1-spec.k
@@ -0,0 +1,110 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-DUP-1-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ DUP ( 1 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : WS:WordStack )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 1 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( W0:Int : ( WS:WordStack => ( W0:Int : WS:WordStack ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 1 )
+
+ ( #next [ DUP ( 1 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( W0:Int : ( WS:WordStack => ( W0:Int : WS:WordStack ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 1 )
+
+ ( #next [ DUP ( 10 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : WS:WordStack ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 10 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W9:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( WS:WordStack => ( W9:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 10 )
+
+ ( #next [ DUP ( 10 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W9:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( WS:WordStack => ( W9:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 10 )
+
+ ( #next [ DUP ( 11 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 11 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W10:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( WS:WordStack => ( W10:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 11 )
+
+ ( #next [ DUP ( 11 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W10:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( WS:WordStack => ( W10:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 11 )
+
+ ( #next [ DUP ( 12 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 12 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W11:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( ( W11:Int => W10:Int ) : ( WS:WordStack => ( W11:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 12 )
+
+ ( #next [ DUP ( 12 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W11:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( ( W11:Int => W10:Int ) : ( WS:WordStack => ( W11:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 12 )
+
+ ( #next [ DUP ( 13 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 13 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W12:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( ( W11:Int => W10:Int ) : ( ( W12:Int => W11:Int ) : ( WS:WordStack => ( W12:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 13 )
+
+ ( #next [ DUP ( 13 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W12:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( ( W11:Int => W10:Int ) : ( ( W12:Int => W11:Int ) : ( WS:WordStack => ( W12:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 13 )
+
+ ( #next [ DUP ( 14 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 14 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W13:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( ( W11:Int => W10:Int ) : ( ( W12:Int => W11:Int ) : ( ( W13:Int => W12:Int ) : ( WS:WordStack => ( W13:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 14 )
+
+ ( #next [ DUP ( 14 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W13:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( ( W11:Int => W10:Int ) : ( ( W12:Int => W11:Int ) : ( ( W13:Int => W12:Int ) : ( WS:WordStack => ( W13:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 14 )
+
+ ( #next [ DUP ( 15 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : ( W14:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 15 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W14:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( ( W11:Int => W10:Int ) : ( ( W12:Int => W11:Int ) : ( ( W13:Int => W12:Int ) : ( ( W14:Int => W13:Int ) : ( WS:WordStack => ( W14:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 15 )
+
+ ( #next [ DUP ( 15 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W14:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( ( W11:Int => W10:Int ) : ( ( W12:Int => W11:Int ) : ( ( W13:Int => W12:Int ) : ( ( W14:Int => W13:Int ) : ( WS:WordStack => ( W14:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 15 )
+
+ ( #next [ DUP ( 16 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : ( W14:Int : ( W15:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 16 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W15:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( ( W11:Int => W10:Int ) : ( ( W12:Int => W11:Int ) : ( ( W13:Int => W12:Int ) : ( ( W14:Int => W13:Int ) : ( ( W15:Int => W14:Int ) : ( WS:WordStack => ( W15:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 16 )
+
+ ( #next [ DUP ( 16 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W15:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( ( W9:Int => W8:Int ) : ( ( W10:Int => W9:Int ) : ( ( W11:Int => W10:Int ) : ( ( W12:Int => W11:Int ) : ( ( W13:Int => W12:Int ) : ( ( W14:Int => W13:Int ) : ( ( W15:Int => W14:Int ) : ( WS:WordStack => ( W15:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 16 )
+
+ ( #next [ DUP ( 2 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : WS:WordStack ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 2 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W1:Int ) : ( ( W1:Int => W0:Int ) : ( WS:WordStack => ( W1:Int : WS:WordStack ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 2 )
+
+ ( #next [ DUP ( 2 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W1:Int ) : ( ( W1:Int => W0:Int ) : ( WS:WordStack => ( W1:Int : WS:WordStack ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 2 )
+
+ ( #next [ DUP ( 3 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 3 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W2:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( WS:WordStack => ( W2:Int : WS:WordStack ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 3 )
+
+ ( #next [ DUP ( 3 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W2:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( WS:WordStack => ( W2:Int : WS:WordStack ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 3 )
+
+ ( #next [ DUP ( 4 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : WS:WordStack ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 4 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W3:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( WS:WordStack => ( W3:Int : WS:WordStack ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 4 )
+
+ ( #next [ DUP ( 4 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W3:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( WS:WordStack => ( W3:Int : WS:WordStack ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 4 )
+
+ ( #next [ DUP ( 5 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : WS:WordStack ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 5 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W4:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( WS:WordStack => ( W4:Int : WS:WordStack ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 5 )
+
+ ( #next [ DUP ( 5 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W4:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( WS:WordStack => ( W4:Int : WS:WordStack ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 5 )
+
+ ( #next [ DUP ( 6 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : WS:WordStack ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 6 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W5:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( WS:WordStack => ( W5:Int : WS:WordStack ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 6 )
+
+ ( #next [ DUP ( 6 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W5:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( WS:WordStack => ( W5:Int : WS:WordStack ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 6 )
+
+ ( #next [ DUP ( 7 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : WS:WordStack ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 7 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W6:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( WS:WordStack => ( W6:Int : WS:WordStack ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 7 )
+
+ ( #next [ DUP ( 7 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W6:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( WS:WordStack => ( W6:Int : WS:WordStack ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 7 )
+
+ ( #next [ DUP ( 8 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : WS:WordStack ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 8 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W7:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( WS:WordStack => ( W7:Int : WS:WordStack ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 8 )
+
+ ( #next [ DUP ( 8 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W7:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( WS:WordStack => ( W7:Int : WS:WordStack ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 8 )
+
+ ( #next [ DUP ( 9 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : WS:WordStack ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ DUP ( 9 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W8:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( WS:WordStack => ( W8:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 9 )
+
+ ( #next [ DUP ( 9 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W8:Int ) : ( ( W1:Int => W0:Int ) : ( ( W2:Int => W1:Int ) : ( ( W3:Int => W2:Int ) : ( ( W4:Int => W3:Int ) : ( ( W5:Int => W4:Int ) : ( ( W6:Int => W5:Int ) : ( ( W7:Int => W6:Int ) : ( ( W8:Int => W7:Int ) : ( WS:WordStack => ( W8:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 9 )
+
+ ( #next [ EQ ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => bool2Word ( W0:Int ==Int W1:Int ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ EQ ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => bool2Word ( W0:Int ==Int W1:Int ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-evmor-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-evmor-2-spec.k
new file mode 100644
index 0000000000..92962c54aa
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-evmor-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-EVMOR-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ EVMOR ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => ( W0:Int |Int W1:Int ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-14]:
+
+ ( #next [ EVMOR ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => ( W0:Int |Int W1:Int ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-14)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-exp-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-exp-2-spec.k
new file mode 100644
index 0000000000..8d0498dd90
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-exp-2-spec.k
@@ -0,0 +1,112 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-EXP-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-30-TO-14]:
+
+ ( #next [ EXP ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => powmod ( W0:Int , W1:Int , pow256 ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-30-TO-14)]
+
+ rule [BASIC-BLOCK-33-TO-27]:
+
+ ( #next [ EXP ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => powmod ( W0:Int , W1:Int , pow256 ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gexp < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gexp < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( W1:Int <=Int 0
+ ))
+ [priority(20), label(BASIC-BLOCK-33-TO-27)]
+
+ rule [BASIC-BLOCK-34-TO-28]:
+
+ ( #next [ EXP ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => powmod ( W0:Int , W1:Int , pow256 ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int ( Gexp < SCHEDULE_CELL:Schedule > +Int ( Gexpbyte < SCHEDULE_CELL:Schedule > *Int ( ( log2Int ( W1:Int ) /Int 8 ) +Int 1 ) ) ) ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( ( Gexp < SCHEDULE_CELL:Schedule > +Int ( Gexpbyte < SCHEDULE_CELL:Schedule > *Int ( ( log2Int ( W1:Int ) /Int 8 ) +Int 1 ) ) ) ) ) ) <=Int GAS_CELL
+ andBool ( 0
+
+ ( #next [ GAS ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ GAS ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ GAS ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( GAS_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ GASLIMIT ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ GASLIMIT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( GASLIMIT_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+
+
+ GASLIMIT_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ GASLIMIT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( GASLIMIT_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+
+ GASLIMIT_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ GASPRICE ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ GASPRICE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( GASPRICE_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+
+ GASPRICE_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ GASPRICE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( GASPRICE_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+ GASPRICE_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ GT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => bool2Word ( W1:Int WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ GT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => bool2Word ( W1:Int WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-invalid-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-invalid-0-spec.k
new file mode 100644
index 0000000000..2b57632856
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-invalid-0-spec.k
@@ -0,0 +1,33 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-INVALID-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-1-TO-8]:
+
+ ( #next [ INVALID ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_INVALID_INSTRUCTION )
+
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ [priority(20), label(BASIC-BLOCK-1-TO-8)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-iszero-1-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-iszero-1-spec.k
new file mode 100644
index 0000000000..aa6b387c41
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-iszero-1-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-ISZERO-1-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ ISZERO ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => bool2Word ( W0:Int ==Int 0 ) ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ ISZERO ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => bool2Word ( W0:Int ==Int 0 ) ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-jumpdest-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-jumpdest-0-spec.k
new file mode 100644
index 0000000000..be827bf96c
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-jumpdest-0-spec.k
@@ -0,0 +1,68 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-JUMPDEST-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-19-TO-18]:
+
+ ( #next [ JUMPDEST ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gjumpdest < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gjumpdest < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-19-TO-18)]
+
+ rule [BASIC-BLOCK-20-TO-12]:
+
+ ( #next [ JUMPDEST ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-20-TO-12)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-2-spec.k
new file mode 100644
index 0000000000..b9acfa8f5f
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-2-spec.k
@@ -0,0 +1,142 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-LOG-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-4-TO-8]:
+
+ ( #next [ LOG ( 0 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STATIC_MODE_VIOLATION )
+
+
+
+ ( W0:Int : ( W1:Int : WS:WordStack ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => true )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires STATIC_CELL:Bool
+ [priority(20), label(BASIC-BLOCK-4-TO-8)]
+
+ rule [BASIC-BLOCK-26-TO-25]:
+
+ ( #next [ LOG ( 0 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( Glog < SCHEDULE_CELL:Schedule > +Int ( Glogdata < SCHEDULE_CELL:Schedule > *Int W1:Int ) ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+
+
+ ( LOG_CELL:List => LOG_CELL:List ListItem ( { ID_CELL:Int | .List | #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) } ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( Glog < SCHEDULE_CELL:Schedule > +Int ( Glogdata < SCHEDULE_CELL:Schedule > *Int W1:Int ) ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ andBool ( ( notBool STATIC_CELL:Bool )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-25)]
+
+ rule [BASIC-BLOCK-27-TO-16]:
+
+ ( #next [ LOG ( 0 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+
+
+ ( LOG_CELL:List => LOG_CELL:List ListItem ( { ID_CELL:Int | .List | #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) } ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool STATIC_CELL:Bool )
+ andBool ( ( notBool USEGAS_CELL:Bool )
+ ))
+ [priority(20), label(BASIC-BLOCK-27-TO-16)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-3-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-3-spec.k
new file mode 100644
index 0000000000..91be18aff8
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-3-spec.k
@@ -0,0 +1,142 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-LOG-3-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-4-TO-8]:
+
+ ( #next [ LOG ( 1 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STATIC_MODE_VIOLATION )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => true )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires STATIC_CELL:Bool
+ [priority(20), label(BASIC-BLOCK-4-TO-8)]
+
+ rule [BASIC-BLOCK-26-TO-25]:
+
+ ( #next [ LOG ( 1 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( ( Glog < SCHEDULE_CELL:Schedule > +Int ( Glogdata < SCHEDULE_CELL:Schedule > *Int W1:Int ) ) +Int Glogtopic < SCHEDULE_CELL:Schedule > ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+
+
+ ( LOG_CELL:List => LOG_CELL:List ListItem ( { ID_CELL:Int | ListItem ( W2:Int ) | #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) } ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( ( Glog < SCHEDULE_CELL:Schedule > +Int ( Glogdata < SCHEDULE_CELL:Schedule > *Int W1:Int ) ) +Int Glogtopic < SCHEDULE_CELL:Schedule > ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ andBool ( ( notBool STATIC_CELL:Bool )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-25)]
+
+ rule [BASIC-BLOCK-27-TO-17]:
+
+ ( #next [ LOG ( 1 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+
+
+ ( LOG_CELL:List => LOG_CELL:List ListItem ( { ID_CELL:Int | ListItem ( W2:Int ) | #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) } ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool STATIC_CELL:Bool )
+ andBool ( ( notBool USEGAS_CELL:Bool )
+ ))
+ [priority(20), label(BASIC-BLOCK-27-TO-17)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-4-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-4-spec.k
new file mode 100644
index 0000000000..af24ec150e
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-4-spec.k
@@ -0,0 +1,142 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-LOG-4-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-4-TO-8]:
+
+ ( #next [ LOG ( 2 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STATIC_MODE_VIOLATION )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : WS:WordStack ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => true )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires STATIC_CELL:Bool
+ [priority(20), label(BASIC-BLOCK-4-TO-8)]
+
+ rule [BASIC-BLOCK-26-TO-25]:
+
+ ( #next [ LOG ( 2 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : WS:WordStack ) ) ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( ( Glog < SCHEDULE_CELL:Schedule > +Int ( Glogdata < SCHEDULE_CELL:Schedule > *Int W1:Int ) ) +Int ( 2 *Int Glogtopic < SCHEDULE_CELL:Schedule > ) ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+
+
+ ( LOG_CELL:List => LOG_CELL:List ListItem ( { ID_CELL:Int | ListItem ( W2:Int ) ListItem ( W3:Int ) | #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) } ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( ( Glog < SCHEDULE_CELL:Schedule > +Int ( Glogdata < SCHEDULE_CELL:Schedule > *Int W1:Int ) ) +Int ( 2 *Int Glogtopic < SCHEDULE_CELL:Schedule > ) ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ andBool ( ( notBool STATIC_CELL:Bool )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-25)]
+
+ rule [BASIC-BLOCK-27-TO-17]:
+
+ ( #next [ LOG ( 2 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : WS:WordStack ) ) ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+
+
+ ( LOG_CELL:List => LOG_CELL:List ListItem ( { ID_CELL:Int | ListItem ( W2:Int ) ListItem ( W3:Int ) | #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) } ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool STATIC_CELL:Bool )
+ andBool ( ( notBool USEGAS_CELL:Bool )
+ ))
+ [priority(20), label(BASIC-BLOCK-27-TO-17)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-5-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-5-spec.k
new file mode 100644
index 0000000000..76e1df92de
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-5-spec.k
@@ -0,0 +1,142 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-LOG-5-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-4-TO-8]:
+
+ ( #next [ LOG ( 3 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STATIC_MODE_VIOLATION )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : WS:WordStack ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => true )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires STATIC_CELL:Bool
+ [priority(20), label(BASIC-BLOCK-4-TO-8)]
+
+ rule [BASIC-BLOCK-26-TO-25]:
+
+ ( #next [ LOG ( 3 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : WS:WordStack ) ) ) ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( ( Glog < SCHEDULE_CELL:Schedule > +Int ( Glogdata < SCHEDULE_CELL:Schedule > *Int W1:Int ) ) +Int ( 3 *Int Glogtopic < SCHEDULE_CELL:Schedule > ) ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+
+
+ ( LOG_CELL:List => LOG_CELL:List ListItem ( { ID_CELL:Int | ListItem ( W2:Int ) ListItem ( W3:Int ) ListItem ( W4:Int ) | #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) } ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( ( Glog < SCHEDULE_CELL:Schedule > +Int ( Glogdata < SCHEDULE_CELL:Schedule > *Int W1:Int ) ) +Int ( 3 *Int Glogtopic < SCHEDULE_CELL:Schedule > ) ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ andBool ( ( notBool STATIC_CELL:Bool )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-25)]
+
+ rule [BASIC-BLOCK-27-TO-16]:
+
+ ( #next [ LOG ( 3 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : WS:WordStack ) ) ) ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+
+
+ ( LOG_CELL:List => LOG_CELL:List ListItem ( { ID_CELL:Int | ListItem ( W2:Int ) ListItem ( W3:Int ) ListItem ( W4:Int ) | #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) } ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool STATIC_CELL:Bool )
+ andBool ( ( notBool USEGAS_CELL:Bool )
+ ))
+ [priority(20), label(BASIC-BLOCK-27-TO-16)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-6-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-6-spec.k
new file mode 100644
index 0000000000..175a0ed5f7
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-log-6-spec.k
@@ -0,0 +1,142 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-LOG-6-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-4-TO-7]:
+
+ ( #next [ LOG ( 4 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STATIC_MODE_VIOLATION )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : WS:WordStack ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => true )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires STATIC_CELL:Bool
+ [priority(20), label(BASIC-BLOCK-4-TO-7)]
+
+ rule [BASIC-BLOCK-26-TO-25]:
+
+ ( #next [ LOG ( 4 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : WS:WordStack ) ) ) ) ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( ( Glog < SCHEDULE_CELL:Schedule > +Int ( Glogdata < SCHEDULE_CELL:Schedule > *Int W1:Int ) ) +Int ( 4 *Int Glogtopic < SCHEDULE_CELL:Schedule > ) ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+
+
+ ( LOG_CELL:List => LOG_CELL:List ListItem ( { ID_CELL:Int | ListItem ( W2:Int ) ListItem ( W3:Int ) ListItem ( W4:Int ) ListItem ( W5:Int ) | #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) } ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( ( Glog < SCHEDULE_CELL:Schedule > +Int ( Glogdata < SCHEDULE_CELL:Schedule > *Int W1:Int ) ) +Int ( 4 *Int Glogtopic < SCHEDULE_CELL:Schedule > ) ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ andBool ( ( notBool STATIC_CELL:Bool )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-25)]
+
+ rule [BASIC-BLOCK-27-TO-17]:
+
+ ( #next [ LOG ( 4 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : WS:WordStack ) ) ) ) ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+
+
+ ( LOG_CELL:List => LOG_CELL:List ListItem ( { ID_CELL:Int | ListItem ( W2:Int ) ListItem ( W3:Int ) ListItem ( W4:Int ) ListItem ( W5:Int ) | #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) } ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool STATIC_CELL:Bool )
+ andBool ( ( notBool USEGAS_CELL:Bool )
+ ))
+ [priority(20), label(BASIC-BLOCK-27-TO-17)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-lt-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-lt-2-spec.k
new file mode 100644
index 0000000000..012597d5b0
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-lt-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-LT-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ LT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => bool2Word ( W0:Int WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ LT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => bool2Word ( W0:Int WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mcopy-3-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mcopy-3-spec.k
new file mode 100644
index 0000000000..532e8f3463
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mcopy-3-spec.k
@@ -0,0 +1,83 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-MCOPY-3-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-22-TO-21]:
+
+ ( #next [ MCOPY ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #range ( LOCALMEM_CELL:Bytes , W1:Int , W2:Int ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , maxInt ( W0:Int , W1:Int ) , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( Gverylow < SCHEDULE_CELL:Schedule > +Int ( Gcopy < SCHEDULE_CELL:Schedule > *Int ( W2:Int up/Int 32 ) ) ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , maxInt ( W0:Int , W1:Int ) , W2:Int ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , maxInt ( W0:Int , W1:Int ) , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( Gverylow < SCHEDULE_CELL:Schedule > +Int ( Gcopy < SCHEDULE_CELL:Schedule > *Int ( W2:Int up/Int 32 ) ) ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , maxInt ( W0:Int , W1:Int ) , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-22-TO-21)]
+
+ rule [BASIC-BLOCK-23-TO-13]:
+
+ ( #next [ MCOPY ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #range ( LOCALMEM_CELL:Bytes , W1:Int , W2:Int ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-23-TO-13)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mload-1-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mload-1-spec.k
new file mode 100644
index 0000000000..65996c2477
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mload-1-spec.k
@@ -0,0 +1,42 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-MLOAD-1-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-1-TO-9]:
+
+ ( #next [ MLOAD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ( ( W0:Int => #asWord ( #range ( LOCALMEM_CELL:Bytes , W0:Int , 32 ) ) ) : WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ [priority(20), label(BASIC-BLOCK-1-TO-9)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mod-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mod-2-spec.k
new file mode 100644
index 0000000000..ecd49dc780
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mod-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-MOD-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ MOD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W0:Int %Word W1:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Glow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Glow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ MOD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W0:Int %Word W1:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-msize-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-msize-0-spec.k
new file mode 100644
index 0000000000..bec9d6b581
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-msize-0-spec.k
@@ -0,0 +1,77 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-MSIZE-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-8]:
+
+ ( #next [ MSIZE ] => #halt )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ MSIZE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ( WS:WordStack => ( chop ( ( 32 *Int MEMORYUSED_CELL:Int ) ) : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ MEMORYUSED_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ MSTORE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #padToWidth ( 32 , #asByteStack ( W1:Int ) ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , 32 ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , 32 ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , 32 ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , 32 ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-22-TO-21)]
+
+ rule [BASIC-BLOCK-23-TO-13]:
+
+ ( #next [ MSTORE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #padToWidth ( 32 , #asByteStack ( W1:Int ) ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-23-TO-13)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mstore8-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mstore8-2-spec.k
new file mode 100644
index 0000000000..9b3c6031e2
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mstore8-2-spec.k
@@ -0,0 +1,42 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-MSTORE8-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-1-TO-8]:
+
+ ( #next [ MSTORE8 ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #buf ( 1 , ( W1:Int modInt 256 ) ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ [priority(20), label(BASIC-BLOCK-1-TO-8)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mulmod-3-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mulmod-3-spec.k
new file mode 100644
index 0000000000..02e126153b
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-mulmod-3-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-MULMOD-3-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ MULMOD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => ( W0:Int *Int W1:Int ) %Word W2:Int ) : ( ( W1:Int : ( W2:Int : WS:WordStack ) ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gmid < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gmid < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ MULMOD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => ( W0:Int *Int W1:Int ) %Word W2:Int ) : ( ( W1:Int : ( W2:Int : WS:WordStack ) ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-not-1-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-not-1-spec.k
new file mode 100644
index 0000000000..f61def869b
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-not-1-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-NOT-1-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ NOT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W0:Int xorInt maxUInt256 ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ NOT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W0:Int xorInt maxUInt256 ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-number-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-number-0-spec.k
new file mode 100644
index 0000000000..5d31a841f8
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-number-0-spec.k
@@ -0,0 +1,122 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-NUMBER-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ NUMBER ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ NUMBER ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( NUMBER_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+
+
+ NUMBER_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ NUMBER ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( NUMBER_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+
+ NUMBER_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ ORIGIN ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ ORIGIN ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( ORIGIN_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+
+ ORIGIN_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ ORIGIN ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( ORIGIN_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+ ORIGIN_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ PC ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ PC ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( PC_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ PC ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( PC_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ POP ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ( ( W0:Int : WS:WordStack ) => WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ [priority(20), label(BASIC-BLOCK-1-TO-8)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-prevrandao-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-prevrandao-0-spec.k
new file mode 100644
index 0000000000..cc3aba595a
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-prevrandao-0-spec.k
@@ -0,0 +1,122 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-PREVRANDAO-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-8]:
+
+ ( #next [ PREVRANDAO ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ PREVRANDAO ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( MIXHASH_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+
+
+ MIXHASH_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ PREVRANDAO ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( MIXHASH_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+
+ MIXHASH_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ PUSH ( N:Int ) ] => #halt )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ PUSH ( N:Int ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ PROGRAM_CELL:Bytes
+
+
+ ( WS:WordStack => ( #asWord ( #range ( PROGRAM_CELL:Bytes , ( PC_CELL:Int +Int 1 ) , N:Int ) ) : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( ( PC_CELL:Int +Int N:Int ) +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ PUSHZERO ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ PUSHZERO ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( 0 : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ PUSHZERO ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( 0 : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ RETURN ] => #halt )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_SUCCESS )
+
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int Gzero < SCHEDULE_CELL:Schedule > ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int Gzero < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-24-TO-23)]
+
+ rule [BASIC-BLOCK-25-TO-14]:
+
+ ( #next [ RETURN ] => #halt )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_SUCCESS )
+
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-25-TO-14)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-returndatacopy-3-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-returndatacopy-3-spec.k
new file mode 100644
index 0000000000..a7b0c219ba
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-returndatacopy-3-spec.k
@@ -0,0 +1,171 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-RETURNDATACOPY-3-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-40-TO-20]:
+
+ ( #next [ RETURNDATACOPY ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #range ( OUTPUT_CELL:Bytes , W1:Int , W2:Int ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( W1:Int +Int W2:Int ) <=Int lengthBytes ( OUTPUT_CELL:Bytes )
+ ))
+ [priority(20), label(BASIC-BLOCK-40-TO-20)]
+
+ rule [BASIC-BLOCK-41-TO-22]:
+
+ ( #next [ RETURNDATACOPY ] => #halt )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_INVALID_MEMORY_ACCESS )
+
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( lengthBytes ( OUTPUT_CELL:Bytes )
+
+ ( #next [ RETURNDATACOPY ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ ( LOCALMEM_CELL:Bytes => LOCALMEM_CELL:Bytes [ W0:Int := #range ( OUTPUT_CELL:Bytes , W1:Int , W2:Int ) ] )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( Gverylow < SCHEDULE_CELL:Schedule > +Int ( Gcopy < SCHEDULE_CELL:Schedule > *Int ( W2:Int up/Int 32 ) ) ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( Gverylow < SCHEDULE_CELL:Schedule > +Int ( Gcopy < SCHEDULE_CELL:Schedule > *Int ( W2:Int up/Int 32 ) ) ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ andBool ( ( W1:Int +Int W2:Int ) <=Int lengthBytes ( OUTPUT_CELL:Bytes )
+ ))
+ [priority(20), label(BASIC-BLOCK-38-TO-30)]
+
+ rule [BASIC-BLOCK-39-TO-31]:
+
+ ( #next [ RETURNDATACOPY ] => #halt )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_INVALID_MEMORY_ACCESS )
+
+
+
+ ( ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) ) => WS:WordStack )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( Gverylow < SCHEDULE_CELL:Schedule > +Int ( Gcopy < SCHEDULE_CELL:Schedule > *Int ( W2:Int up/Int 32 ) ) ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( Gverylow < SCHEDULE_CELL:Schedule > +Int ( Gcopy < SCHEDULE_CELL:Schedule > *Int ( W2:Int up/Int 32 ) ) ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ andBool ( lengthBytes ( OUTPUT_CELL:Bytes )
+
+ ( #next [ RETURNDATASIZE ] => #halt )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ RETURNDATASIZE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+
+ ( WS:WordStack => ( lengthBytes ( OUTPUT_CELL:Bytes ) : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ REVERT ] => #halt )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_REVERT )
+
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int Gzero < SCHEDULE_CELL:Schedule > ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int Gzero < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-24-TO-23)]
+
+ rule [BASIC-BLOCK-25-TO-15]:
+
+ ( #next [ REVERT ] => #halt )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_REVERT )
+
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-25-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sar-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sar-2-spec.k
new file mode 100644
index 0000000000..9d66f92e43
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sar-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SAR-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ SAR ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W1:Int >>sWord W0:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ SAR ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W1:Int >>sWord W0:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sdiv-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sdiv-2-spec.k
new file mode 100644
index 0000000000..9aa3456ab5
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sdiv-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SDIV-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ SDIV ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W0:Int /sWord W1:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Glow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Glow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-16]:
+
+ ( #next [ SDIV ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W0:Int /sWord W1:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-16)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-selfbalance-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-selfbalance-0-spec.k
new file mode 100644
index 0000000000..2ac3924828
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-selfbalance-0-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SELFBALANCE-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SELFBALANCE ] => #halt )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ ID_CELL:Int
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+
+
+
+
+ ID_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+
+ ...
+
+ requires (( 1023
+
+ ( #next [ SELFBALANCE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( WS:WordStack => ( BALANCE_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+
+
+
+
+ ID_CELL:Int
+
+
+ BALANCE_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+
+ ...
+
+ requires (( ( notBool #sizeWordStack ( WS:WordStack , 0)
+
+ ( #next [ SGT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => ( (W1:Int) s WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ SGT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => ( (W1:Int) s WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sha3-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sha3-2-spec.k
new file mode 100644
index 0000000000..222003ecd1
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sha3-2-spec.k
@@ -0,0 +1,83 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SHA3-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-24-TO-23]:
+
+ ( #next [ SHA3 ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => keccak ( #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) -Int ( Gsha3 < SCHEDULE_CELL:Schedule > +Int ( Gsha3word < SCHEDULE_CELL:Schedule > *Int ( W1:Int up/Int 32 ) ) ) ) ) )
+
+
+ ( MEMORYUSED_CELL:Int => #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( ( ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) ) +Int ( Gsha3 < SCHEDULE_CELL:Schedule > +Int ( Gsha3word < SCHEDULE_CELL:Schedule > *Int ( W1:Int up/Int 32 ) ) ) ) ) ) <=Int GAS_CELL andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-24-TO-23)]
+
+ rule [BASIC-BLOCK-25-TO-14]:
+
+ ( #next [ SHA3 ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => keccak ( #range ( LOCALMEM_CELL:Bytes , W0:Int , W1:Int ) ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ LOCALMEM_CELL:Bytes
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-25-TO-14)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-shl-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-shl-2-spec.k
new file mode 100644
index 0000000000..dd356addaf
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-shl-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SHL-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ SHL ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W1:Int < WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ SHL ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W1:Int < WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-shr-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-shr-2-spec.k
new file mode 100644
index 0000000000..86363b8887
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-shr-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SHR-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ SHR ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W1:Int >>Word W0:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ SHR ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W1:Int >>Word W0:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-signextend-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-signextend-2-spec.k
new file mode 100644
index 0000000000..a8267edb35
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-signextend-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SIGNEXTEND-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ SIGNEXTEND ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => signextend ( W0:Int , W1:Int ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Glow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Glow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-14]:
+
+ ( #next [ SIGNEXTEND ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => signextend ( W0:Int , W1:Int ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-14)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sload-1-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sload-1-spec.k
new file mode 100644
index 0000000000..dbea118f0d
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sload-1-spec.k
@@ -0,0 +1,57 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SLOAD-1-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-1-TO-9]:
+
+ ( #next [ SLOAD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int => #lookup ( STORAGE_CELL:Map , W0:Int ) ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+
+
+
+
+ ID_CELL:Int
+
+
+ STORAGE_CELL:Map
+
+ ...
+
+ ...
+
+ ...
+
+
+ ...
+
+
+ [priority(20), label(BASIC-BLOCK-1-TO-9)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-slt-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-slt-2-spec.k
new file mode 100644
index 0000000000..57c8830997
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-slt-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SLT-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ SLT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => ( (W0:Int) s WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ SLT ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => ( (W0:Int) s WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-smod-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-smod-2-spec.k
new file mode 100644
index 0000000000..1cba97ba83
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-smod-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SMOD-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ SMOD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W0:Int %sWord W1:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Glow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Glow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-16]:
+
+ ( #next [ SMOD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W0:Int %sWord W1:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-16)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sstore-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sstore-2-spec.k
new file mode 100644
index 0000000000..7fe651384c
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sstore-2-spec.k
@@ -0,0 +1,110 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SSTORE-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-4-TO-8]:
+
+ ( #next [ SSTORE ] => #halt )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STATIC_MODE_VIOLATION )
+
+
+
+ ID_CELL:Int
+
+
+ ( W0:Int : ( W1:Int : WS:WordStack ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => true )
+
+ ...
+
+ ...
+
+
+
+
+
+ ID_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+
+ ...
+
+ requires ( STATIC_CELL:Bool
+ )
+ [priority(20), label(BASIC-BLOCK-4-TO-8)]
+
+ rule [BASIC-BLOCK-3-TO-12]:
+
+ ( #next [ SSTORE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+ ...
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( STORAGE_CELL:Map => STORAGE_CELL:Map [ W0:Int <- W1:Int ] )
+
+ ...
+
+ ...
+
+ ...
+
+
+ ...
+
+ requires ( ( notBool STATIC_CELL:Bool )
+ )
+ [priority(20), label(BASIC-BLOCK-3-TO-12)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-stop-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-stop-0-spec.k
new file mode 100644
index 0000000000..92f71dcaed
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-stop-0-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-STOP-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ STOP ] => #halt )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_SUCCESS )
+
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gzero < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gzero < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-14]:
+
+ ( #next [ STOP ] => #halt )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_SUCCESS )
+
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-14)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sub-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sub-2-spec.k
new file mode 100644
index 0000000000..3ecc09ef06
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-sub-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SUB-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ SUB ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => chop ( ( W0:Int -Int W1:Int ) ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-15]:
+
+ ( #next [ SUB ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => chop ( ( W0:Int -Int W1:Int ) ) ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-15)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-1-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-1-spec.k
new file mode 100644
index 0000000000..b37ad75c12
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-1-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-1-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SWAP ( 1 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : WS:WordStack )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 1 )
+
+ ( #next [ SWAP ( 1 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 2 <=Int #sizeWordStack ( WS:WordStack , 1 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-19]:
+
+ ( #next [ SWAP ( 1 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 2 <=Int #sizeWordStack ( WS:WordStack , 1 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-19)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-10-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-10-spec.k
new file mode 100644
index 0000000000..565e6c809d
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-10-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-10-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-8]:
+
+ ( #next [ SWAP ( 10 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : WS:WordStack ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 10 )
+
+ ( #next [ SWAP ( 10 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 11 <=Int #sizeWordStack ( WS:WordStack , 10 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-18]:
+
+ ( #next [ SWAP ( 10 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 11 <=Int #sizeWordStack ( WS:WordStack , 10 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-18)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-11-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-11-spec.k
new file mode 100644
index 0000000000..cfba6a7587
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-11-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-11-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SWAP ( 11 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 11 )
+
+ ( #next [ SWAP ( 11 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 12 <=Int #sizeWordStack ( WS:WordStack , 11 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-18]:
+
+ ( #next [ SWAP ( 11 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 12 <=Int #sizeWordStack ( WS:WordStack , 11 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-18)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-12-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-12-spec.k
new file mode 100644
index 0000000000..a52452fdc5
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-12-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-12-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SWAP ( 12 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 12 )
+
+ ( #next [ SWAP ( 12 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 13 <=Int #sizeWordStack ( WS:WordStack , 12 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-18]:
+
+ ( #next [ SWAP ( 12 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 13 <=Int #sizeWordStack ( WS:WordStack , 12 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-18)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-13-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-13-spec.k
new file mode 100644
index 0000000000..6fc489cd1d
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-13-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-13-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SWAP ( 13 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 13 )
+
+ ( #next [ SWAP ( 13 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 14 <=Int #sizeWordStack ( WS:WordStack , 13 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-18]:
+
+ ( #next [ SWAP ( 13 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 14 <=Int #sizeWordStack ( WS:WordStack , 13 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-18)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-14-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-14-spec.k
new file mode 100644
index 0000000000..1a4ee14eab
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-14-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-14-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SWAP ( 14 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 14 )
+
+ ( #next [ SWAP ( 14 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 15 <=Int #sizeWordStack ( WS:WordStack , 14 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-18]:
+
+ ( #next [ SWAP ( 14 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 15 <=Int #sizeWordStack ( WS:WordStack , 14 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-18)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-15-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-15-spec.k
new file mode 100644
index 0000000000..7d7ef7419d
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-15-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-15-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-8]:
+
+ ( #next [ SWAP ( 15 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : ( W14:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 15 )
+
+ ( #next [ SWAP ( 15 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : ( W14:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 16 <=Int #sizeWordStack ( WS:WordStack , 15 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-18]:
+
+ ( #next [ SWAP ( 15 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : ( W14:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 16 <=Int #sizeWordStack ( WS:WordStack , 15 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-18)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-16-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-16-spec.k
new file mode 100644
index 0000000000..a3d6cee9f4
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-16-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-16-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SWAP ( 16 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : ( W14:Int : ( W15:Int : WS:WordStack ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 16 )
+
+ ( #next [ SWAP ( 16 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : ( W14:Int : ( W15:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 17 <=Int #sizeWordStack ( WS:WordStack , 16 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-18]:
+
+ ( #next [ SWAP ( 16 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( W9:Int : ( W10:Int : ( W11:Int : ( W12:Int : ( W13:Int : ( W14:Int : ( W15:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 17 <=Int #sizeWordStack ( WS:WordStack , 16 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-18)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-2-spec.k
new file mode 100644
index 0000000000..704696dd60
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-2-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SWAP ( 2 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : WS:WordStack ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 2 )
+
+ ( #next [ SWAP ( 2 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 3 <=Int #sizeWordStack ( WS:WordStack , 2 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-18]:
+
+ ( #next [ SWAP ( 2 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 3 <=Int #sizeWordStack ( WS:WordStack , 2 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-18)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-3-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-3-spec.k
new file mode 100644
index 0000000000..441a37c6de
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-3-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-3-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-8]:
+
+ ( #next [ SWAP ( 3 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : WS:WordStack ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 3 )
+
+ ( #next [ SWAP ( 3 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 4 <=Int #sizeWordStack ( WS:WordStack , 3 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-19]:
+
+ ( #next [ SWAP ( 3 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 4 <=Int #sizeWordStack ( WS:WordStack , 3 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-19)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-4-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-4-spec.k
new file mode 100644
index 0000000000..7077c8a92a
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-4-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-4-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SWAP ( 4 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : WS:WordStack ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 4 )
+
+ ( #next [ SWAP ( 4 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 5 <=Int #sizeWordStack ( WS:WordStack , 4 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-19]:
+
+ ( #next [ SWAP ( 4 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 5 <=Int #sizeWordStack ( WS:WordStack , 4 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-19)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-5-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-5-spec.k
new file mode 100644
index 0000000000..6cdc063cdc
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-5-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-5-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-8]:
+
+ ( #next [ SWAP ( 5 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : WS:WordStack ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 5 )
+
+ ( #next [ SWAP ( 5 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 6 <=Int #sizeWordStack ( WS:WordStack , 5 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-19]:
+
+ ( #next [ SWAP ( 5 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 6 <=Int #sizeWordStack ( WS:WordStack , 5 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-19)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-6-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-6-spec.k
new file mode 100644
index 0000000000..a64ff309e6
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-6-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-6-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-8]:
+
+ ( #next [ SWAP ( 6 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : WS:WordStack ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 6 )
+
+ ( #next [ SWAP ( 6 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 7 <=Int #sizeWordStack ( WS:WordStack , 6 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-19]:
+
+ ( #next [ SWAP ( 6 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 7 <=Int #sizeWordStack ( WS:WordStack , 6 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-19)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-7-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-7-spec.k
new file mode 100644
index 0000000000..f8e7e049ab
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-7-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-7-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-8]:
+
+ ( #next [ SWAP ( 7 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : WS:WordStack ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 7 )
+
+ ( #next [ SWAP ( 7 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 8 <=Int #sizeWordStack ( WS:WordStack , 7 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-19]:
+
+ ( #next [ SWAP ( 7 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 8 <=Int #sizeWordStack ( WS:WordStack , 7 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-19)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-8-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-8-spec.k
new file mode 100644
index 0000000000..87f16fe387
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-8-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-8-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SWAP ( 8 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : WS:WordStack ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 8 )
+
+ ( #next [ SWAP ( 8 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 9 <=Int #sizeWordStack ( WS:WordStack , 8 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-18]:
+
+ ( #next [ SWAP ( 8 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 9 <=Int #sizeWordStack ( WS:WordStack , 8 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-18)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-9-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-9-spec.k
new file mode 100644
index 0000000000..3ab5eb21f2
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-swap-9-spec.k
@@ -0,0 +1,106 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-SWAP-9-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ SWAP ( 9 ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_UNDERFLOW )
+
+
+
+ ( W0:Int : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : WS:WordStack ) ) ) ) ) ) ) ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires #sizeWordStack ( WS:WordStack , 9 )
+
+ ( #next [ SWAP ( 9 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( 10 <=Int #sizeWordStack ( WS:WordStack , 9 )
+ ))
+ [priority(20), label(BASIC-BLOCK-25-TO-24)]
+
+ rule [BASIC-BLOCK-26-TO-18]:
+
+ ( #next [ SWAP ( 9 ) ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => WS:WordStack [ 0 ] ) : ( W1:Int : ( W2:Int : ( W3:Int : ( W4:Int : ( W5:Int : ( W6:Int : ( W7:Int : ( W8:Int : ( WS:WordStack => WS:WordStack [ 0 := W0:Int ] ) ) ) ) ) ) ) ) ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( 10 <=Int #sizeWordStack ( WS:WordStack , 9 )
+ ))
+ [priority(20), label(BASIC-BLOCK-26-TO-18)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-timestamp-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-timestamp-0-spec.k
new file mode 100644
index 0000000000..94b82c152a
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-timestamp-0-spec.k
@@ -0,0 +1,122 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-TIMESTAMP-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-3-TO-7]:
+
+ ( #next [ TIMESTAMP ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STACK_OVERFLOW )
+
+
+
+ WS:WordStack
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires 1023
+
+ ( #next [ TIMESTAMP ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( WS:WordStack => ( TIMESTAMP_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gbase < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+
+
+ TIMESTAMP_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( USEGAS_CELL:Bool andBool ( ( ( Gbase < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ TIMESTAMP ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( WS:WordStack => ( TIMESTAMP_CELL:Int : WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+
+
+ TIMESTAMP_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( ( notBool USEGAS_CELL:Bool )
+ andBool ( ( notBool #sizeWordStack ( WS:WordStack , 0 )
+
+ ( #next [ TLOAD ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int => #lookup ( TRANSIENT_STORAGE_CELL:Map , W0:Int ) ) : WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+
+
+
+
+ ID_CELL:Int
+
+
+ TRANSIENT_STORAGE_CELL:Map
+
+ ...
+
+ ...
+
+ ...
+
+
+ ...
+
+
+ [priority(20), label(BASIC-BLOCK-1-TO-9)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-tstore-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-tstore-2-spec.k
new file mode 100644
index 0000000000..26c0c4e29e
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-tstore-2-spec.k
@@ -0,0 +1,110 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-TSTORE-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-4-TO-7]:
+
+ ( #next [ TSTORE ] => #halt )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_STATIC_MODE_VIOLATION )
+
+
+
+ ID_CELL:Int
+
+
+ ( W0:Int : ( W1:Int : WS:WordStack ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => true )
+
+ ...
+
+ ...
+
+
+
+
+
+ ID_CELL:Int
+
+ ...
+
+ ...
+
+ ...
+
+
+ ...
+
+ requires ( STATIC_CELL:Bool
+ )
+ [priority(20), label(BASIC-BLOCK-4-TO-7)]
+
+ rule [BASIC-BLOCK-3-TO-12]:
+
+ ( #next [ TSTORE ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ false
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( ( W0:Int : ( W1:Int : WS:WordStack ) ) => WS:WordStack )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+
+ ( STATIC_CELL:Bool => false )
+
+ ...
+
+ ...
+
+
+
+
+
+ ID_CELL:Int
+
+
+ ( TRANSIENT_STORAGE_CELL:Map => TRANSIENT_STORAGE_CELL:Map [ W0:Int <- W1:Int ] )
+
+ ...
+
+ ...
+
+ ...
+
+
+ ...
+
+ requires ( ( notBool STATIC_CELL:Bool )
+ )
+ [priority(20), label(BASIC-BLOCK-3-TO-12)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-undefined-0-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-undefined-0-spec.k
new file mode 100644
index 0000000000..5e57e78a52
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-undefined-0-spec.k
@@ -0,0 +1,33 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-UNDEFINED-0-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-1-TO-8]:
+
+ ( #next [ UNDEFINED ( W:Int ) ] => #halt )
+ ~> K_CELL:K
+
+
+
+
+ ( STATUSCODE_CELL:StatusCode => EVMC_UNDEFINED_INSTRUCTION )
+
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ [priority(20), label(BASIC-BLOCK-1-TO-8)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-xor-2-spec.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-xor-2-spec.k
new file mode 100644
index 0000000000..abbb3bb945
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary-xor-2-spec.k
@@ -0,0 +1,74 @@
+requires "../evm.md"
+requires "../buf.md"
+
+module SUMMARY-XOR-2-SPEC
+imports EVM
+imports BUF
+
+
+ rule [BASIC-BLOCK-21-TO-20]:
+
+ ( #next [ XOR ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ SCHEDULE_CELL:Schedule
+
+
+ ( USEGAS_CELL:Bool => true )
+
+
+
+
+
+ ( ( W0:Int => W0:Int xorInt W1:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( ( GAS_CELL:Int => ( GAS_CELL:Int -Int Gverylow < SCHEDULE_CELL:Schedule > ) ) )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires USEGAS_CELL:Bool andBool ( ( ( Gverylow < SCHEDULE_CELL:Schedule > ) ) ) <=Int GAS_CELL
+ [priority(20), label(BASIC-BLOCK-21-TO-20)]
+
+ rule [BASIC-BLOCK-22-TO-14]:
+
+ ( #next [ XOR ] ~> .K => .K )
+ ~> K_CELL:K
+
+
+ ( USEGAS_CELL:Bool => false )
+
+
+
+
+
+ ( ( W0:Int => W0:Int xorInt W1:Int ) : ( ( W1:Int : WS:WordStack ) => WS:WordStack ) )
+
+
+ ( PC_CELL:Int => ( PC_CELL:Int +Int 1 ) )
+
+
+ ( GAS_CELL:Int )
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ requires ( notBool USEGAS_CELL:Bool )
+ [priority(20), label(BASIC-BLOCK-22-TO-14)]
+
+endmodule
\ No newline at end of file
diff --git a/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary.k b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary.k
new file mode 100644
index 0000000000..b3d35739e7
--- /dev/null
+++ b/kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries/summary.k
@@ -0,0 +1,212 @@
+requires "summary-add-2-spec.k"
+requires "summary-addmod-3-spec.k"
+requires "summary-address-0-spec.k"
+requires "summary-and-2-spec.k"
+requires "summary-balance-normal-1-spec.k"
+requires "summary-balance-owise-1-spec.k"
+requires "summary-blockhash-1-spec.k"
+requires "summary-byte-2-spec.k"
+requires "summary-calldatacopy-3-spec.k"
+requires "summary-calldataload-1-spec.k"
+requires "summary-calldatasize-0-spec.k"
+requires "summary-caller-0-spec.k"
+requires "summary-chainid-0-spec.k"
+requires "summary-codecopy-3-spec.k"
+requires "summary-codesize-0-spec.k"
+requires "summary-coinbase-0-spec.k"
+requires "summary-difficulty-0-spec.k"
+requires "summary-div-2-spec.k"
+requires "summary-dup-1-spec.k"
+requires "summary-dup-10-spec.k"
+requires "summary-dup-11-spec.k"
+requires "summary-dup-12-spec.k"
+requires "summary-dup-13-spec.k"
+requires "summary-dup-14-spec.k"
+requires "summary-dup-15-spec.k"
+requires "summary-dup-16-spec.k"
+requires "summary-dup-2-spec.k"
+requires "summary-dup-3-spec.k"
+requires "summary-dup-4-spec.k"
+requires "summary-dup-5-spec.k"
+requires "summary-dup-6-spec.k"
+requires "summary-dup-7-spec.k"
+requires "summary-dup-8-spec.k"
+requires "summary-dup-9-spec.k"
+requires "summary-eq-2-spec.k"
+requires "summary-evmor-2-spec.k"
+requires "summary-exp-2-spec.k"
+requires "summary-gas-0-spec.k"
+requires "summary-gaslimit-0-spec.k"
+requires "summary-gasprice-0-spec.k"
+requires "summary-gt-2-spec.k"
+requires "summary-invalid-0-spec.k"
+requires "summary-iszero-1-spec.k"
+requires "summary-jumpdest-0-spec.k"
+requires "summary-log-2-spec.k"
+requires "summary-log-3-spec.k"
+requires "summary-log-4-spec.k"
+requires "summary-log-5-spec.k"
+requires "summary-log-6-spec.k"
+requires "summary-lt-2-spec.k"
+requires "summary-mcopy-3-spec.k"
+requires "summary-mload-1-spec.k"
+requires "summary-mod-2-spec.k"
+requires "summary-msize-0-spec.k"
+requires "summary-mstore-2-spec.k"
+requires "summary-mstore8-2-spec.k"
+requires "summary-mulmod-3-spec.k"
+requires "summary-not-1-spec.k"
+requires "summary-number-0-spec.k"
+requires "summary-origin-0-spec.k"
+requires "summary-pc-0-spec.k"
+requires "summary-pop-1-spec.k"
+requires "summary-prevrandao-0-spec.k"
+requires "summary-push-0-spec.k"
+requires "summary-pushzero-0-spec.k"
+requires "summary-return-2-spec.k"
+requires "summary-returndatacopy-3-spec.k"
+requires "summary-returndatasize-0-spec.k"
+requires "summary-revert-2-spec.k"
+requires "summary-sar-2-spec.k"
+requires "summary-sdiv-2-spec.k"
+requires "summary-selfbalance-0-spec.k"
+requires "summary-sgt-2-spec.k"
+requires "summary-sha3-2-spec.k"
+requires "summary-shl-2-spec.k"
+requires "summary-shr-2-spec.k"
+requires "summary-signextend-2-spec.k"
+requires "summary-sload-1-spec.k"
+requires "summary-slt-2-spec.k"
+requires "summary-smod-2-spec.k"
+requires "summary-sstore-2-spec.k"
+requires "summary-stop-0-spec.k"
+requires "summary-sub-2-spec.k"
+requires "summary-swap-1-spec.k"
+requires "summary-swap-10-spec.k"
+requires "summary-swap-11-spec.k"
+requires "summary-swap-12-spec.k"
+requires "summary-swap-13-spec.k"
+requires "summary-swap-14-spec.k"
+requires "summary-swap-15-spec.k"
+requires "summary-swap-16-spec.k"
+requires "summary-swap-2-spec.k"
+requires "summary-swap-3-spec.k"
+requires "summary-swap-4-spec.k"
+requires "summary-swap-5-spec.k"
+requires "summary-swap-6-spec.k"
+requires "summary-swap-7-spec.k"
+requires "summary-swap-8-spec.k"
+requires "summary-swap-9-spec.k"
+requires "summary-timestamp-0-spec.k"
+requires "summary-tload-1-spec.k"
+requires "summary-tstore-2-spec.k"
+requires "summary-undefined-0-spec.k"
+requires "summary-xor-2-spec.k"
+
+module SUMMARY
+imports SUMMARY-ADD-2-SPEC
+imports SUMMARY-ADDMOD-3-SPEC
+imports SUMMARY-ADDRESS-0-SPEC
+imports SUMMARY-AND-2-SPEC
+imports SUMMARY-BALANCE-NORMAL-1-SPEC
+imports SUMMARY-BALANCE-OWISE-1-SPEC
+imports SUMMARY-BLOCKHASH-1-SPEC
+imports SUMMARY-BYTE-2-SPEC
+imports SUMMARY-CALLDATACOPY-3-SPEC
+imports SUMMARY-CALLDATALOAD-1-SPEC
+imports SUMMARY-CALLDATASIZE-0-SPEC
+imports SUMMARY-CALLER-0-SPEC
+imports SUMMARY-CHAINID-0-SPEC
+imports SUMMARY-CODECOPY-3-SPEC
+imports SUMMARY-CODESIZE-0-SPEC
+imports SUMMARY-COINBASE-0-SPEC
+imports SUMMARY-DIFFICULTY-0-SPEC
+imports SUMMARY-DIV-2-SPEC
+imports SUMMARY-DUP-1-SPEC
+imports SUMMARY-DUP-10-SPEC
+imports SUMMARY-DUP-11-SPEC
+imports SUMMARY-DUP-12-SPEC
+imports SUMMARY-DUP-13-SPEC
+imports SUMMARY-DUP-14-SPEC
+imports SUMMARY-DUP-15-SPEC
+imports SUMMARY-DUP-16-SPEC
+imports SUMMARY-DUP-2-SPEC
+imports SUMMARY-DUP-3-SPEC
+imports SUMMARY-DUP-4-SPEC
+imports SUMMARY-DUP-5-SPEC
+imports SUMMARY-DUP-6-SPEC
+imports SUMMARY-DUP-7-SPEC
+imports SUMMARY-DUP-8-SPEC
+imports SUMMARY-DUP-9-SPEC
+imports SUMMARY-EQ-2-SPEC
+imports SUMMARY-EVMOR-2-SPEC
+imports SUMMARY-EXP-2-SPEC
+imports SUMMARY-GAS-0-SPEC
+imports SUMMARY-GASLIMIT-0-SPEC
+imports SUMMARY-GASPRICE-0-SPEC
+imports SUMMARY-GT-2-SPEC
+imports SUMMARY-INVALID-0-SPEC
+imports SUMMARY-ISZERO-1-SPEC
+imports SUMMARY-JUMPDEST-0-SPEC
+imports SUMMARY-LOG-2-SPEC
+imports SUMMARY-LOG-3-SPEC
+imports SUMMARY-LOG-4-SPEC
+imports SUMMARY-LOG-5-SPEC
+imports SUMMARY-LOG-6-SPEC
+imports SUMMARY-LT-2-SPEC
+imports SUMMARY-MCOPY-3-SPEC
+imports SUMMARY-MLOAD-1-SPEC
+imports SUMMARY-MOD-2-SPEC
+imports SUMMARY-MSIZE-0-SPEC
+imports SUMMARY-MSTORE-2-SPEC
+imports SUMMARY-MSTORE8-2-SPEC
+imports SUMMARY-MULMOD-3-SPEC
+imports SUMMARY-NOT-1-SPEC
+imports SUMMARY-NUMBER-0-SPEC
+imports SUMMARY-ORIGIN-0-SPEC
+imports SUMMARY-PC-0-SPEC
+imports SUMMARY-POP-1-SPEC
+imports SUMMARY-PREVRANDAO-0-SPEC
+imports SUMMARY-PUSH-0-SPEC
+imports SUMMARY-PUSHZERO-0-SPEC
+imports SUMMARY-RETURN-2-SPEC
+imports SUMMARY-RETURNDATACOPY-3-SPEC
+imports SUMMARY-RETURNDATASIZE-0-SPEC
+imports SUMMARY-REVERT-2-SPEC
+imports SUMMARY-SAR-2-SPEC
+imports SUMMARY-SDIV-2-SPEC
+imports SUMMARY-SELFBALANCE-0-SPEC
+imports SUMMARY-SGT-2-SPEC
+imports SUMMARY-SHA3-2-SPEC
+imports SUMMARY-SHL-2-SPEC
+imports SUMMARY-SHR-2-SPEC
+imports SUMMARY-SIGNEXTEND-2-SPEC
+imports SUMMARY-SLOAD-1-SPEC
+imports SUMMARY-SLT-2-SPEC
+imports SUMMARY-SMOD-2-SPEC
+imports SUMMARY-SSTORE-2-SPEC
+imports SUMMARY-STOP-0-SPEC
+imports SUMMARY-SUB-2-SPEC
+imports SUMMARY-SWAP-1-SPEC
+imports SUMMARY-SWAP-10-SPEC
+imports SUMMARY-SWAP-11-SPEC
+imports SUMMARY-SWAP-12-SPEC
+imports SUMMARY-SWAP-13-SPEC
+imports SUMMARY-SWAP-14-SPEC
+imports SUMMARY-SWAP-15-SPEC
+imports SUMMARY-SWAP-16-SPEC
+imports SUMMARY-SWAP-2-SPEC
+imports SUMMARY-SWAP-3-SPEC
+imports SUMMARY-SWAP-4-SPEC
+imports SUMMARY-SWAP-5-SPEC
+imports SUMMARY-SWAP-6-SPEC
+imports SUMMARY-SWAP-7-SPEC
+imports SUMMARY-SWAP-8-SPEC
+imports SUMMARY-SWAP-9-SPEC
+imports SUMMARY-TIMESTAMP-0-SPEC
+imports SUMMARY-TLOAD-1-SPEC
+imports SUMMARY-TSTORE-2-SPEC
+imports SUMMARY-UNDEFINED-0-SPEC
+imports SUMMARY-XOR-2-SPEC
+
+endmodule
diff --git a/kevm-pyk/src/kevm_pyk/summarizer.py b/kevm-pyk/src/kevm_pyk/summarizer.py
index b0eb17d9b0..50e6ffaf3c 100644
--- a/kevm-pyk/src/kevm_pyk/summarizer.py
+++ b/kevm-pyk/src/kevm_pyk/summarizer.py
@@ -1,6 +1,8 @@
from __future__ import annotations
import logging
+import re
+import shutil
import time
import traceback
from multiprocessing import Pool
@@ -365,7 +367,7 @@ class KEVMSummarizer:
save_directory: Path
def __init__(self, proof_dir: Path, save_directory: Path) -> None:
- self.kevm = KEVM(kdist.get('evm-semantics.summary'))
+ self.kevm = KEVM(kdist.get('evm-semantics.summarize'))
self.proof_dir = proof_dir
self.save_directory = save_directory
@@ -423,7 +425,7 @@ def _build_spec(
final_constraints = final_constraints or []
cterm = CTerm(self.kevm.definition.empty_config(KSort('GeneratedTopCell')))
- opcode_symbol = opcode.label.name.split('_')[0]
+ opcode_symbol = opcode.label.name.split('_')[0].replace('(', '')
# construct the initial substitution
_init_subst: dict[str, KInner] = {}
@@ -590,8 +592,8 @@ def create_kcfg_explore() -> KCFGExplore:
passed, res_lines = _init_and_run_proof(proof)
- ensure_dir_path(self.save_directory / proof.id)
- with open(self.save_directory / proof.id / 'proof-result.txt', 'w') as f:
+ ensure_dir_path(self.proof_dir / proof.id)
+ with open(self.proof_dir / proof.id / 'proof-result.txt', 'w') as f:
f.write(f'Proof {proof.id} Passed' if passed else f'Proof {proof.id} Failed')
f.write('\n')
for line in res_lines:
@@ -602,12 +604,115 @@ def create_kcfg_explore() -> KCFGExplore:
def summarize(self, proof: APRProof, merge: bool = False) -> None:
# TODO: may need customized way to generate summary rules, e.g., replacing infinite gas with finite gas.
proof.minimize_kcfg(KEVMSemantics(allow_symbolic_program=True), merge)
- ensure_dir_path(self.save_directory / proof.id)
- with open(self.save_directory / proof.id / 'summary.md', 'w') as f:
- _LOGGER.info(f'Writing summary to {self.save_directory / proof.id / "summary.md"}')
+ ensure_dir_path(self.save_directory)
+
+ def _remove_inf_gas(original_str: str) -> str:
+ result = ''
+ left_str = original_str
+ inf_gas_pattern = r'([\s\S]*?)'
+ matches: list[str] = re.findall(inf_gas_pattern, original_str)
+ matches = [m.replace('#gas', '').strip() for m in matches if 'GAS_CELL:Int => ' in m]
+ for match in matches:
+ gas_usage = match.replace('GAS_CELL:Int => ', '')
+ gas_usage = gas_usage.replace(' GAS_CELL:Int -Int', '')
+ in_brackets = 0
+ i = 0
+ while i < len(gas_usage):
+ if gas_usage[i] == '(':
+ in_brackets += 1
+ elif gas_usage[i] == ')':
+ in_brackets -= 1
+ elif gas_usage[i:i+4] == '-Int' and in_brackets == 3:
+ gas_usage = gas_usage[:i] + '+Int' + gas_usage[i+4:]
+ i += 4
+ continue
+ i += 1
+ gas_guard = f' andBool {gas_usage} <=Int GAS_CELL '
+ if '( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) )' in gas_usage:
+ gas_guard += ' andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL'
+ if '( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) )' in gas_usage:
+ gas_guard += ' andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL'
+ if '( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , maxInt ( W0:Int , W1:Int ) , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) )' in gas_usage:
+ gas_guard += ' andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , maxInt ( W0:Int , W1:Int ) , W2:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL'
+ if '( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , 32 ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) )' in gas_usage:
+ gas_guard += ' andBool ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , 32 ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL'
+ # Find first requires USEGAS_CELL pattern
+ usegas_match = re.search(r'requires (\( )?USEGAS_CELL:Bool', left_str)
+ if not usegas_match:
+ raise ValueError(f'No requires USEGAS_CELL pattern found in {left_str}')
+
+ # Build replacement with gas guard
+ if usegas_match.group(1): # Case with opening parenthesis
+ replacement = f'requires ( USEGAS_CELL:Bool {gas_guard} '
+ else:
+ replacement = f'requires USEGAS_CELL:Bool {gas_guard}'
+
+ start_idx, end_idx = usegas_match.span()
+ result += left_str[:start_idx] + replacement
+ left_str = left_str[end_idx:]
+
+ result += left_str
+ return result.replace('#gas', '')
+
+ def _remove_dash_from_var(original_str: str) -> str:
+ return re.sub(r'(? str:
+ result = re.sub(
+ r'\(\s*([\s\S]*?)\s*DotAccountVar:AccountCellMap\s*\)',
+ r'\1\n ...',
+ original_str,
+ )
+ result = re.sub(
+ r'\(\s*notBool\s*\s*([^<]+)\s*\s*in_keys\s*\([^)]*\)\s*\)', r'', result
+ )
+ result = re.sub(r'requires(\s*\[[\s\S]*?\])', r'\1', result)
+ result = re.sub(r'(\()\s*andBool\s*([\s\S]*?)\s*(\))', r'\1\2\3', result)
+ result = re.sub(r'andBool\s*\(\s*\)', r'', result)
+ return result
+
+ def replace_lhs_function_by_assignment(original_str: str) -> str:
+ if not 'SUMMARY-BALANCE' in original_str:
+ return original_str
+ pattern = r'\s*(\(\s*W0:Int modInt pow160\s*\))\s*'
+ if re.search(pattern, original_str):
+ replace_pattern = r' ACCTID_CELL_CELL '
+ result = re.sub(pattern, replace_pattern, original_str)
+ result = re.sub(
+ r'(\s*)', r'\1requires ACCTID_CELL_CELL ==Int W0:Int modInt pow160\n', result
+ )
+ return result
+
+ spec_name = f'summary-{proof.id.replace("_", "-").lower()}.k'
+ with open(self.save_directory / spec_name, 'w') as f:
+ _LOGGER.info(f'Writing summary to {self.save_directory / spec_name}')
for res_line in self.show_proof(proof, to_module=True):
- f.write(res_line)
- f.write('\n')
+ if res_line.startswith('module'):
+ res_line = _remove_dash_from_var(res_line)
+ res_line = _use_legal_remainder(res_line)
+ res_line = _remove_inf_gas(res_line)
+ res_line = replace_lhs_function_by_assignment(res_line)
+ f.write('requires "../evm.md"\n')
+ f.write('requires "../buf.md"\n\n')
+ lines = res_line.split('\n')
+ lines.insert(1, 'imports EVM')
+ lines.insert(2, 'imports BUF')
+ f.write('\n'.join(lines))
+ continue
+ k_files = sorted([f for f in self.save_directory.glob('*.k') if f.name != 'summary.k'])
+ module_names = [f.stem.upper() for f in k_files]
+ with open(self.save_directory / 'summary.k', 'w') as f:
+ for k_file in k_files:
+ # if 'summary-exp-2-spec.k' in k_file.name:
+ # # TODO: remove EXP because its log2 calculation may cause problem.
+ # continue
+ f.write(f'requires {k_file.name!r}\n'.replace("'", '"'))
+ f.write('\nmodule SUMMARY\n')
+ for module_name in module_names:
+ # if 'SUMMARY-EXP-2-SPEC' in module_name:
+ # continue
+ f.write(f'imports {module_name}\n')
+ f.write('\nendmodule\n')
def print_node(self, proof: APRProof, nodes: Iterable[int]) -> None:
with open(self.proof_dir / proof.id / 'node-print.md', 'w') as f:
@@ -643,13 +748,12 @@ def batch_summarize(num_processes: int = 4) -> None:
num_processes: Number of parallel processes to use. Defaults to 4.
"""
- opcodes_to_process = OPCODES.keys()
+ OPCODES.keys()
passed_opcodes = get_passed_opcodes()
- unpassed_opcodes = [opcode for opcode in opcodes_to_process if opcode not in passed_opcodes]
- has_call_opcodes = [opcode for opcode in unpassed_opcodes if 'Call' in OPCODES[opcode].label.name]
- no_call_opcodes = [opcode for opcode in unpassed_opcodes if 'Call' not in OPCODES[opcode].label.name]
+ has_call_opcodes = [opcode for opcode in passed_opcodes if 'Call' in OPCODES[opcode].label.name]
+ no_call_opcodes = [opcode for opcode in passed_opcodes if 'Call' not in OPCODES[opcode].label.name]
- _LOGGER.info(f'Starting batch summarization of {len(unpassed_opcodes)} opcodes with {num_processes} processes')
+ _LOGGER.info(f'Starting batch summarization of {len(passed_opcodes)} opcodes with {num_processes} processes')
with Pool(processes=num_processes) as pool:
_LOGGER.info(f'Summarizing {len(no_call_opcodes)} opcodes without CALL')
@@ -662,19 +766,21 @@ def batch_summarize(num_processes: int = 4) -> None:
def summarize(opcode_symbol: str) -> tuple[KEVMSummarizer, list[APRProof]]:
proof_dir = Path(__file__).parent / 'proofs'
- save_directory = Path(__file__).parent / 'summaries'
+ save_directory = Path(__file__).parent / 'kproj' / 'evm-semantics' / 'summaries'
summarizer = KEVMSummarizer(proof_dir, save_directory)
proofs = summarizer.build_spec(opcode_symbol)
for proof in proofs:
- summarizer.print_node(proof, [1])
- summarizer.explore(proof)
- summarizer.summarize(proof)
- proof.write_proof_data()
+ if (proof_dir / proof.id / 'proof.json').exists():
+ proof = APRProof.read_proof_data(proof_dir, proof.id)
+ summarizer.summarize(proof)
+ else:
+ summarizer.print_node(proof, [1])
+ summarizer.explore(proof)
+ summarizer.summarize(proof)
return summarizer, proofs
-def analyze_proof(opcode: str, node_id: int) -> None:
+def clear_proofs() -> None:
proof_dir = Path(__file__).parent / 'proofs'
- save_directory = Path(__file__).parent / 'summaries'
- summarizer = KEVMSummarizer(proof_dir, save_directory)
- summarizer.analyze_proof(str(proof_dir / f'{opcode}_SPEC'), node_id)
+ if proof_dir.exists():
+ shutil.rmtree(proof_dir)
diff --git a/kevm-pyk/src/tests/integration/test_prove.py b/kevm-pyk/src/tests/integration/test_prove.py
index c49202a2d5..6c1a7e1ad3 100644
--- a/kevm-pyk/src/tests/integration/test_prove.py
+++ b/kevm-pyk/src/tests/integration/test_prove.py
@@ -397,33 +397,21 @@ def test_prove_dss(
)
-def test_prove_optimizations(
- kompiled_target_for: Callable[[Path], Path],
- tmp_path: Path,
- caplog: LogCaptureFixture,
- use_booster_dev: bool,
- bug_report: BugReport | None,
-) -> None:
- caplog.set_level(logging.INFO)
-
- def _get_optimization_proofs() -> list[APRProof]:
- _defn_dir = kdist.get('evm-semantics.haskell')
- _kevm = KEVM(_defn_dir)
- _optimization_rules = _kevm.definition.module('EVM-OPTIMIZATIONS').rules
- _claims = [
- KClaim(
- rule.body, requires=rule.requires, ensures=rule.ensures, att=KAtt([AttEntry(Atts.LABEL, rule.label)])
- )
- for rule in _optimization_rules
- ]
- return [APRProof.from_claim(kevm.definition, claim, {}) for claim in _claims]
-
- spec_file = REPO_ROOT / 'tests/specs/opcodes/evm-optimizations-spec.k'
- definition_dir = kompiled_target_for(spec_file)
- kevm = KEVM(definition_dir)
+def _get_proofs_of(target_name: str, module_name: str, kevm: KEVM) -> list[APRProof]:
+ _defn_dir = kdist.get(target_name)
+ _kevm = KEVM(_defn_dir)
+ _rules = _kevm.definition.module(module_name).rules
+ _claims = [
+ KClaim(
+ rule.body, requires=rule.requires, ensures=rule.ensures, att=KAtt([AttEntry(Atts.LABEL, rule.label)])
+ )
+ for rule in _rules
+ ]
+ return [APRProof.from_claim(kevm.definition, claim, {}) for claim in _claims]
- kore_rpc_command = ('booster-dev',) if use_booster_dev else ('kore-rpc-booster',)
+def _test_prove_of(kevm: KEVM, kore_rpc_command: tuple[str, ...], proofs: list[APRProof]) -> None:
+ _LOGGER.info(f'Proving {len(proofs)} proofs')
with legacy_explore(
kevm, kcfg_semantics=KEVMSemantics(allow_symbolic_program=True), kore_rpc_command=kore_rpc_command
) as kcfg_explore:
@@ -435,7 +423,7 @@ def _get_optimization_proofs() -> list[APRProof]:
counterexample_info=False,
fast_check_subsumption=True,
)
- for proof in _get_optimization_proofs():
+ for proof in proofs:
initialize_apr_proof(kcfg_explore.cterm_symbolic, proof)
prover.advance_proof(proof, max_iterations=20)
node_printer = kevm_node_printer(kevm, proof)
@@ -443,3 +431,51 @@ def _get_optimization_proofs() -> list[APRProof]:
proof_display = '\n'.join(' ' + line for line in proof_show.show(proof))
_LOGGER.info(f'Proof {proof.id}:\n{proof_display}')
assert proof.passed
+
+def test_prove_optimizations(
+ kompiled_target_for: Callable[[Path], Path],
+ tmp_path: Path,
+ caplog: LogCaptureFixture,
+ use_booster_dev: bool,
+ bug_report: BugReport | None,
+) -> None:
+ caplog.set_level(logging.INFO)
+
+ spec_file = REPO_ROOT / 'tests/specs/opcodes/evm-optimizations-spec.k'
+ definition_dir = kompiled_target_for(spec_file)
+ kevm = KEVM(definition_dir)
+
+ kore_rpc_command = ('booster-dev',) if use_booster_dev else ('kore-rpc-booster',)
+
+ _test_prove_of(kevm, kore_rpc_command, _get_proofs_of('evm-semantics.haskell', 'EVM-OPTIMIZATIONS', kevm))
+
+
+SUMMARY_MODULES = [
+ path.stem.upper()
+ for path in (REPO_ROOT / 'kevm-pyk/src/kevm_pyk/kproj/evm-semantics/summaries').glob('*.k')
+ if path.name != 'summary.k'
+]
+
+
+@pytest.mark.parametrize(
+ 'module',
+ SUMMARY_MODULES,
+ ids=SUMMARY_MODULES,
+)
+def test_prove_summaries(
+ module: str,
+ kompiled_target_for: Callable[[Path], Path],
+ tmp_path: Path,
+ caplog: LogCaptureFixture,
+ use_booster_dev: bool,
+ bug_report: BugReport | None,
+) -> None:
+ caplog.set_level(logging.INFO)
+
+ spec_file = REPO_ROOT / 'tests/specs/opcodes/evm-summary-spec.k'
+ definition_dir = kompiled_target_for(spec_file)
+ kevm = KEVM(definition_dir)
+
+ kore_rpc_command = ('booster-dev',) if use_booster_dev else ('kore-rpc-booster',)
+
+ _test_prove_of(kevm, kore_rpc_command, _get_proofs_of('evm-semantics.haskell-summary', module, kevm))
\ No newline at end of file
diff --git a/kevm-pyk/src/tests/integration/test_summarize.py b/kevm-pyk/src/tests/integration/test_summarize.py
index 5b7b7a2664..37e367659f 100644
--- a/kevm-pyk/src/tests/integration/test_summarize.py
+++ b/kevm-pyk/src/tests/integration/test_summarize.py
@@ -9,8 +9,7 @@
def test_summarize(opcode: str) -> None:
if get_summary_status(opcode) != 'PASSED':
pytest.skip(f'{opcode} status: {OPCODES_SUMMARY_STATUS[opcode]}')
-
- if opcode in ['DUP', 'SWAP', 'LOG']:
+ if opcode in ['DUP', 'SWAP', 'BALANCE', 'SDIV', 'LOG', 'SMOD', 'BYTE']:
pytest.skip(f'{opcode} summarization is time-consuming')
print(f'[{opcode}] selected')
diff --git a/log.txt b/log.txt
new file mode 100644
index 0000000000..abb228cd33
--- /dev/null
+++ b/log.txt
@@ -0,0 +1,390 @@
+poetry -C ./kevm-pyk env use --no-cache /nix/store/7hnr99nxrd2aw6lghybqdmkckq60j6l9-python3-3.11.9/bin/python3
+Using virtualenv: /home/zhaoji/.cache/pypoetry/virtualenvs/kevm-pyk-9eA2lNH8-py3.11
+poetry -C ./kevm-pyk install
+Installing dependencies from lock file
+
+No dependencies to install or update
+
+Installing the current project: kevm-pyk (1.0.678)
+make -C kevm-pyk/ test-integration PYTEST_ARGS+="-k test_prove_summaries"
+make[1]: Entering directory '/home/zhaoji/evm-semantics/kevm-pyk'
+poetry install
+Installing dependencies from lock file
+
+No dependencies to install or update
+
+Installing the current project: kevm-pyk (1.0.678)
+poetry run pytest src/tests/integration --verbose --durations=0 --dist=worksteal --maxfail=1 --numprocesses=8 -k test_prove_summaries
+============================= test session starts ==============================
+platform linux -- Python 3.11.9, pytest-7.4.4, pluggy-1.5.0 -- /home/zhaoji/.cache/pypoetry/virtualenvs/kevm-pyk-9eA2lNH8-py3.11/bin/python
+cachedir: .pytest_cache
+hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase(PosixPath('/home/zhaoji/evm-semantics/kevm-pyk/.hypothesis/examples'))
+rootdir: /home/zhaoji/evm-semantics/kevm-pyk
+plugins: mock-3.14.0, cov-6.0.0, xdist-3.6.1, kframework-7.1.219, hypothesis-6.127.9, timeout-2.3.1
+created: 8/8 workers
+8 workers [1 item]
+
+scheduling tests via WorkStealingScheduling
+
+src/tests/integration/test_prove.py::test_prove_summaries[SUMMARY-RETURN-2-SPEC]
+[gw7] [100%] FAILED src/tests/integration/test_prove.py::test_prove_summaries[SUMMARY-RETURN-2-SPEC]
+
+=================================== FAILURES ===================================
+_________________ test_prove_summaries[SUMMARY-RETURN-2-SPEC] __________________
+[gw7] linux -- Python 3.11.9 /home/zhaoji/.cache/pypoetry/virtualenvs/kevm-pyk-9eA2lNH8-py3.11/bin/python
+
+module = 'SUMMARY-RETURN-2-SPEC'
+kompiled_target_for = .kompile at 0x7518d5f3aac0>
+tmp_path = PosixPath('/tmp/pytest-of-zhaoji/pytest-78/popen-gw7/test_prove_summaries_SUMMARY_R0')
+caplog = <_pytest.logging.LogCaptureFixture object at 0x7518d5e10b90>
+use_booster_dev = False, bug_report = None
+
+ @pytest.mark.parametrize(
+ 'module',
+ SUMMARY_MODULES,
+ ids=SUMMARY_MODULES,
+ )
+ def test_prove_summaries(
+ module: str,
+ kompiled_target_for: Callable[[Path], Path],
+ tmp_path: Path,
+ caplog: LogCaptureFixture,
+ use_booster_dev: bool,
+ bug_report: BugReport | None,
+ ) -> None:
+ caplog.set_level(logging.INFO)
+
+ spec_file = REPO_ROOT / 'tests/specs/opcodes/evm-summary-spec.k'
+ definition_dir = kompiled_target_for(spec_file)
+ kevm = KEVM(definition_dir)
+
+ kore_rpc_command = ('booster-dev',) if use_booster_dev else ('kore-rpc-booster',)
+
+> _test_prove_of(kevm, kore_rpc_command, _get_proofs_of('evm-semantics.haskell-summary', module, kevm))
+
+src/tests/integration/test_prove.py:482:
+_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
+
+kevm =
+kore_rpc_command = ('kore-rpc-booster',)
+proofs = [, ]
+
+ def _test_prove_of(kevm: KEVM, kore_rpc_command: tuple[str, ...], proofs: list[APRProof]) -> None:
+ _LOGGER.info(f'Proving {len(proofs)} proofs')
+ with legacy_explore(
+ kevm, kcfg_semantics=KEVMSemantics(allow_symbolic_program=True), kore_rpc_command=kore_rpc_command
+ ) as kcfg_explore:
+ prover = APRProver(
+ kcfg_explore,
+ execute_depth=20,
+ terminal_rules=[],
+ cut_point_rules=['EVM.pc.inc', 'EVM.end-basic-block'],
+ counterexample_info=False,
+ fast_check_subsumption=True,
+ )
+ for proof in proofs:
+ initialize_apr_proof(kcfg_explore.cterm_symbolic, proof)
+ prover.advance_proof(proof, max_iterations=20)
+ node_printer = kevm_node_printer(kevm, proof)
+ proof_show = APRProofShow(kevm, node_printer=node_printer)
+ proof_display = '\n'.join(' ' + line for line in proof_show.show(proof))
+ _LOGGER.info(f'Proof {proof.id}:\n{proof_display}')
+> assert proof.passed
+E assert False
+E + where False = .passed
+
+src/tests/integration/test_prove.py:433: AssertionError
+------------------------------ Captured log call -------------------------------
+INFO pyk.ktool.kompile:utils.py:556 [PID=2460636][exec] kompile /home/zhaoji/evm-semantics/tests/specs/opcodes/verification.k --main-module VERIFICATION --syntax-module VERIFICATION -I /home/zhaoji/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/evm-semantics -I /home/zhaoji/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin --md-selector 'k & ! symbolic' --hook-namespaces 'JSON KRYPTO' --emit-json --backend llvm --llvm-kompile-type c -ccopt -std=c++17 -ccopt -lssl -ccopt -lcrypto -ccopt -lsecp256k1 -ccopt /home/zhaoji/.cache/kdist-9ffc41e/evm-semantics/plugin/krypto.a -ccopt -Wno-deprecated-declarations --output-definition /tmp/pytest-of-zhaoji/pytest-78/popen-gw7/kompiled0/opcodes-verification-VERIFICATION/llvm-library --type-inference-mode simplesub --debug
+INFO pyk.ktool.kompile:utils.py:556 [PID=2460637][exec] kompile /home/zhaoji/evm-semantics/tests/specs/opcodes/verification.k --main-module VERIFICATION --syntax-module VERIFICATION -I /home/zhaoji/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/evm-semantics -I /home/zhaoji/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin --md-selector 'k & ! concrete' --hook-namespaces 'JSON KRYPTO' --emit-json --backend haskell --output-definition /tmp/pytest-of-zhaoji/pytest-78/popen-gw7/kompiled0/opcodes-verification-VERIFICATION --type-inference-mode simplesub --debug
+INFO pyk.ktool.kompile:utils.py:576 [PID=2460637][done] status=0 time=26.782s
+INFO pyk.ktool.kompile:utils.py:576 [PID=2460636][done] status=0 time=27.968s
+INFO pyk.kast.outer:outer.py:1643 Loading JSON definition: /home/zhaoji/.cache/kdist-9ffc41e/evm-semantics/haskell-summary/compiled.json
+INFO pyk.kast.outer:outer.py:1645 Converting JSON definition to Kast: /home/zhaoji/.cache/kdist-9ffc41e/evm-semantics/haskell-summary/compiled.json
+INFO pyk.kast.outer:outer.py:1643 Loading JSON definition: /tmp/pytest-of-zhaoji/pytest-78/popen-gw7/kompiled0/opcodes-verification-VERIFICATION/compiled.json
+INFO pyk.kast.outer:outer.py:1645 Converting JSON definition to Kast: /tmp/pytest-of-zhaoji/pytest-78/popen-gw7/kompiled0/opcodes-verification-VERIFICATION/compiled.json
+INFO tests.integration.test_prove:test_prove.py:414 Proving 2 proofs
+INFO pyk.kore.rpc:rpc.py:1153 Starting KoreServer: kore-rpc-booster /tmp/pytest-of-zhaoji/pytest-78/popen-gw7/kompiled0/opcodes-verification-VERIFICATION/definition.kore --module VERIFICATION --server-port 0
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Loading definition from /tmp/pytest-of-zhaoji/pytest-78/popen-gw7/kompiled0/opcodes-verification-VERIFICATION/definition.kore, main module "VERIFICATION"
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [kore][info] Reading the input file TimeSpec {sec = 0, nsec = 13513419}
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [kore][info] Parsing the file TimeSpec {sec = 0, nsec = 130}
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [kore][info] Verifying the definition TimeSpec {sec = 0, nsec = 230}
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [kore][info] Executing TimeSpec {sec = 0, nsec = 676288320}
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [kore][info] Reading the input file TimeSpec {sec = 0, nsec = 14303116}
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [kore][info] Parsing the file TimeSpec {sec = 0, nsec = 291}
+INFO pyk.kore.rpc:rpc.py:1160 KoreServer started: 0.0.0.0:38819, pid=2461589
+INFO pyk.kore.rpc:rpc.py:115 Connecting to host: localhost:38819
+INFO pyk.kore.rpc:rpc.py:122 Connected to host: localhost:38819
+INFO kevm_pyk.utils:utils.py:320 Computing definedness constraint for initial node: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-25-TO-14
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-001 - simplify
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-001 - simplify
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-002 - simplify
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [kore][info] Verifying the definition TimeSpec {sec = 0, nsec = 231}
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Starting RPC server
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-001
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-002
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-002 - simplify
+INFO kevm_pyk.utils:utils.py:323 Simplifying initial and target node: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-25-TO-14
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-003 - simplify
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-003 - simplify
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-004 - simplify
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-003
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-004
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-004 - simplify
+INFO pyk.proof.proof:proof.py:523 Initializing proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-25-TO-14
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-005 - add-module
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-005 - add-module
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-006 - add-module
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-005
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-006
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-006 - add-module
+INFO pyk.proof.proof:proof.py:527 Found 1 next steps for proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-25-TO-14
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-007 - execute
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-007
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-007 - execute
+INFO pyk.kcfg.kcfg:kcfg.py:569 Extending current KCFG with the following: basic block at depth 7: 1 --> 3
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-25-TO-14 since no save dir was specified.
+INFO pyk.proof.proof:proof.py:527 Found 1 next steps for proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-25-TO-14
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-008 - implies
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-008
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-008 - implies
+INFO pyk.proof.reachability:reachability.py:801 Subsumed into target node SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-25-TO-14: (3, 2)
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-25-TO-14 since no save dir was specified.
+INFO pyk.proof.proof:proof.py:527 Found 0 next steps for proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-25-TO-14
+INFO tests.integration.test_prove:test_prove.py:432 Proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-25-TO-14:
+
+ ┌─ 1 (root, init)
+ │ k: #next [ RETURN ] ~> K_CELL:K
+ │ pc: PC_CELL:Int
+ │ callDepth: CALLDEPTH_CELL:Int
+ │ statusCode: STATUSCODE_CELL:StatusCode
+ │
+ │ (7 steps)
+ ├─ 3 (terminal)
+ │ k: #halt ~> K_CELL:K
+ │ pc: PC_CELL:Int
+ │ callDepth: CALLDEPTH_CELL:Int
+ │ statusCode: EVMC_SUCCESS
+ │
+ ┊ constraint: true
+ ┊ subst: .Subst
+ └─ 2 (leaf, target, terminal)
+ k: #halt ~> K_CELL:K
+ pc: PC_CELL:Int
+ callDepth: CALLDEPTH_CELL:Int
+ statusCode: EVMC_SUCCESS
+
+
+
+
+INFO kevm_pyk.utils:utils.py:320 Computing definedness constraint for initial node: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-009 - simplify
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-009 - simplify
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-010 - simplify
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-009
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-010
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-010 - simplify
+INFO kevm_pyk.utils:utils.py:323 Simplifying initial and target node: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-011 - simplify
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-011 - simplify
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-012 - simplify
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-011
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-012
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-012 - simplify
+INFO pyk.proof.proof:proof.py:523 Initializing proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-013 - add-module
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-013 - add-module
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-014 - add-module
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-013
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-014
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-014 - add-module
+INFO pyk.proof.proof:proof.py:527 Found 1 next steps for proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-015 - execute
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-015
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-015 - execute
+INFO pyk.kcfg.kcfg:kcfg.py:569 Extending current KCFG with the following: basic block at depth 7: 1 --> 3
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23 since no save dir was specified.
+INFO pyk.proof.proof:proof.py:527 Found 1 next steps for proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-016 - execute
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-016
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-016 - execute
+INFO pyk.kcfg.kcfg:kcfg.py:569 Extending current KCFG with the following: 2 branches: 3 --> [4, 5]: ['Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) <=Int GAS_CELL:Int', 'GAS_CELL:Int 6
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23 since no save dir was specified.
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-018 - execute
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-018
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-018 - execute
+INFO pyk.proof.reachability:reachability.py:894 Caching next step for edge starting from 5
+INFO pyk.kcfg.kcfg:kcfg.py:569 Extending current KCFG with the following: basic block at depth 6: 5 --> 7
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23 since no save dir was specified.
+INFO pyk.proof.proof:proof.py:527 Found 2 next steps for proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23
+INFO pyk.proof.reachability:reachability.py:868 Using cached step for edge 4 --> 6
+INFO pyk.kcfg.kcfg:kcfg.py:569 Extending current KCFG with the following: 2 branches: 6 --> [8, 9]: ['Gzero < SCHEDULE_CELL:Schedule > <=Int GAS_CELL:Int -Int Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int )', 'GAS_CELL:Int -Int Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ']
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23 since no save dir was specified.
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-019 - implies
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-019
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-019 - implies
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23 since no save dir was specified.
+INFO pyk.proof.proof:proof.py:527 Found 2 next steps for proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-020 - execute
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-020
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-020 - execute
+INFO pyk.proof.reachability:reachability.py:894 Caching next step for edge starting from 8
+INFO pyk.kcfg.kcfg:kcfg.py:569 Extending current KCFG with the following: basic block at depth 5: 8 --> 10
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23 since no save dir was specified.
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-021 - execute
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-021
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-021 - execute
+INFO pyk.proof.reachability:reachability.py:894 Caching next step for edge starting from 9
+INFO pyk.kcfg.kcfg:kcfg.py:569 Extending current KCFG with the following: basic block at depth 5: 9 --> 11
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23 since no save dir was specified.
+INFO pyk.proof.proof:proof.py:527 Found 2 next steps for proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-022 - implies
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-022
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-022 - implies
+INFO pyk.proof.reachability:reachability.py:801 Subsumed into target node SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23: (10, 2)
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23 since no save dir was specified.
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-023 - implies
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-023 - implies
+INFO pyk.proof.reachability:reachability.py:614 Skipped saving proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23 since no save dir was specified.
+INFO pyk.proof.proof:proof.py:527 Found 0 next steps for proof: SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-024 - simplify
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-023
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-024
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-024 - simplify
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-025 - simplify
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-025 - simplify
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-026 - implies
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-025
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-026
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-026 - implies
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-027 - implies
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-027 - implies
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-028 - simplify
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-027
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-028
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-028 - simplify
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-029 - simplify
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-029 - simplify
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-030 - implies
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-029
+INFO pyk.kore.rpc:rpc.py:1168 [PID=2461589][stde] [proxy] Processing request 128749219953296-030
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-030 - implies
+INFO pyk.kore.rpc:rpc.py:63 Sending request to localhost:38819: 128749219953296-031 - implies
+INFO pyk.kore.rpc:rpc.py:66 Received response from localhost:38819: 128749219953296-031 - implies
+INFO tests.integration.test_prove:test_prove.py:432 Proof SUMMARY-RETURN-2-SPEC.BASIC-BLOCK-24-TO-23:
+
+ ┌─ 1 (root, init)
+ │ k: #next [ RETURN ] ~> K_CELL:K
+ │ pc: PC_CELL:Int
+ │ callDepth: CALLDEPTH_CELL:Int
+ │ statusCode: STATUSCODE_CELL:StatusCode
+ │
+ │ (7 steps)
+ ├─ 3 (split)
+ │ k: ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0: ...
+ │ pc: PC_CELL:Int
+ │ callDepth: CALLDEPTH_CELL:Int
+ │ statusCode: STATUSCODE_CELL:StatusCode
+ ┃
+ ┃ (branch)
+ ┣━━┓ subst: .Subst
+ ┃ ┃ constraint:
+ ┃ ┃ ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) <=Int GAS_CELL:Int
+ ┃ │
+ ┃ ├─ 4
+ ┃ │ k: ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0: ...
+ ┃ │ pc: PC_CELL:Int
+ ┃ │ callDepth: CALLDEPTH_CELL:Int
+ ┃ │ statusCode: STATUSCODE_CELL:StatusCode
+ ┃ │
+ ┃ │ (3 steps)
+ ┃ ├─ 6 (split)
+ ┃ │ k: Gzero < SCHEDULE_CELL:Schedule > ~> #deductGas ~> #access [ RETURN , RETURN W0:I ...
+ ┃ │ pc: PC_CELL:Int
+ ┃ │ callDepth: CALLDEPTH_CELL:Int
+ ┃ │ statusCode: STATUSCODE_CELL:StatusCode
+ ┃ ┃
+ ┃ ┃ (branch)
+ ┃ ┣━━┓ subst: .Subst
+ ┃ ┃ ┃ constraint:
+ ┃ ┃ ┃ Gzero < SCHEDULE_CELL:Schedule > <=Int ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) )
+ ┃ ┃ │
+ ┃ ┃ ├─ 8
+ ┃ ┃ │ k: Gzero < SCHEDULE_CELL:Schedule > ~> #deductGas ~> #access [ RETURN , RETURN W0:I ...
+ ┃ ┃ │ pc: PC_CELL:Int
+ ┃ ┃ │ callDepth: CALLDEPTH_CELL:Int
+ ┃ ┃ │ statusCode: STATUSCODE_CELL:StatusCode
+ ┃ ┃ │
+ ┃ ┃ │ (5 steps)
+ ┃ ┃ ├─ 10 (terminal)
+ ┃ ┃ │ k: #halt ~> K_CELL:K
+ ┃ ┃ │ pc: PC_CELL:Int
+ ┃ ┃ │ callDepth: CALLDEPTH_CELL:Int
+ ┃ ┃ │ statusCode: EVMC_SUCCESS
+ ┃ ┃ │
+ ┃ ┃ ┊ constraint: true
+ ┃ ┃ ┊ subst: .Subst
+ ┃ ┃ └─ 2 (leaf, target, terminal)
+ ┃ ┃ k: #halt ~> K_CELL:K
+ ┃ ┃ pc: PC_CELL:Int
+ ┃ ┃ callDepth: CALLDEPTH_CELL:Int
+ ┃ ┃ statusCode: EVMC_SUCCESS
+ ┃ ┃
+ ┃ ┗━━┓ subst: .Subst
+ ┃ ┃ constraint:
+ ┃ ┃ ( GAS_CELL:Int -Int ( Cmem ( SCHEDULE_CELL:Schedule , #memoryUsageUpdate ( MEMORYUSED_CELL:Int , W0:Int , W1:Int ) ) -Int Cmem ( SCHEDULE_CELL:Schedule , MEMORYUSED_CELL:Int ) ) )
+ ┃ │
+ ┃ ├─ 9
+ ┃ │ k: Gzero < SCHEDULE_CELL:Schedule > ~> #deductGas ~> #access [ RETURN , RETURN W0:I ...
+ ┃ │ pc: PC_CELL:Int
+ ┃ │ callDepth: CALLDEPTH_CELL:Int
+ ┃ │ statusCode: STATUSCODE_CELL:StatusCode
+ ┃ │
+ ┃ │ (5 steps)
+ ┃ └─ 11 (leaf, terminal)
+ ┃ k: #halt ~> K_CELL:K
+ ┃ pc: PC_CELL:Int
+ ┃ callDepth: CALLDEPTH_CELL:Int
+ ┃ statusCode: EVMC_OUT_OF_GAS
+ ┃
+ ┗━━┓ subst: .Subst
+ ┃ constraint:
+ ┃ GAS_CELL:Int K_CELL:K
+ pc: PC_CELL:Int
+ callDepth: CALLDEPTH_CELL:Int
+ statusCode: EVMC_OUT_OF_GAS
+
+
+
+
+INFO pyk.kore.rpc:rpc.py:1181 Stopping KoreServer: 0.0.0.0:38819, pid=2461589
+INFO pyk.kore.rpc:rpc.py:1189 KoreServer stopped: 0.0.0.0:38819, pid=2461589
+============================== slowest durations ===============================
+71.91s call src/tests/integration/test_prove.py::test_prove_summaries[SUMMARY-RETURN-2-SPEC]
+
+(2 durations < 0.005s hidden. Use -vv to show these durations.)
+=========================== short test summary info ============================
+FAILED src/tests/integration/test_prove.py::test_prove_summaries[SUMMARY-RETURN-2-SPEC]
+!!!!!!!!!!!!!!!!!!!!!!!!!! stopping after 1 failures !!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!!!!!!!!!!! xdist.dsession.Interrupted: stopping after 1 failures !!!!!!!!!!!!!
+========================= 1 failed in 73.15s (0:01:13) =========================
+make[1]: *** [Makefile:39: test-integration] Error 2
+make[1]: Leaving directory '/home/zhaoji/evm-semantics/kevm-pyk'
+make: *** [Makefile:81: test-prove-summaries] Error 2
diff --git a/test-conformance-normal.txt b/test-conformance-normal.txt
new file mode 100644
index 0000000000..f6f4efbce7
--- /dev/null
+++ b/test-conformance-normal.txt
@@ -0,0 +1,8412 @@
+poetry -C ./kevm-pyk env use --no-cache /nix/store/7hnr99nxrd2aw6lghybqdmkckq60j6l9-python3-3.11.9/bin/python3
+Using virtualenv: /home/zhaoji/.cache/pypoetry/virtualenvs/kevm-pyk-9eA2lNH8-py3.11
+poetry -C ./kevm-pyk install
+Installing dependencies from lock file
+
+No dependencies to install or update
+
+Installing the current project: kevm-pyk (1.0.678)
+make -C kevm-pyk/ test-integration PYTEST_ARGS+="-k test_conformance.py"
+make[1]: Entering directory '/home/zhaoji/evm-semantics/kevm-pyk'
+poetry install
+Installing dependencies from lock file
+
+No dependencies to install or update
+
+Installing the current project: kevm-pyk (1.0.678)
+poetry run pytest src/tests/integration --verbose --durations=0 --dist=worksteal --maxfail=1 --numprocesses=8 -k test_conformance.py
+============================= test session starts ==============================
+platform linux -- Python 3.11.9, pytest-7.4.4, pluggy-1.5.0 -- /home/zhaoji/.cache/pypoetry/virtualenvs/kevm-pyk-9eA2lNH8-py3.11/bin/python
+cachedir: .pytest_cache
+hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase(PosixPath('/home/zhaoji/evm-semantics/kevm-pyk/.hypothesis/examples'))
+rootdir: /home/zhaoji/evm-semantics/kevm-pyk
+plugins: mock-3.14.0, kframework-7.1.222, cov-6.0.0, hypothesis-6.129.1, xdist-3.6.1, timeout-2.3.1
+created: 8/8 workers
+8 workers [2829 items]
+
+scheduling tests via WorkStealingScheduling
+
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/iszero.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes4.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest264.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/modexp_modsize0_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_Gas2999.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC1DiffPlaces.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest264.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest177.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMAfter.json]
+[gw7] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_Gas2999.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_22000.json]
+[gw1] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2a.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest177.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest75.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts1.json]
+[gw0] [ 0%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/iszero.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/eq.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts1.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest75.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest293.json]
+[gw1] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2a.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return.json]
+[gw4] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes4.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest293.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest26.json]
+[gw5] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/modexp_modsize0_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_delegatecall.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_ABCB_RECURSIVE.json]
+[gw5] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_delegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_failing_call.json]
+[gw7] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_22000.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_overlappingInputOutput.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest26.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest195.json]
+[gw0] [ 0%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/eq.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/lt.json]
+[gw1] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest195.json]
+[gw4] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest370.json]
+[gw7] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_overlappingInputOutput.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle2.json]
+[gw5] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_failing_call.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_callcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_postfix0.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100.json]
+[gw7] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_postfix0.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest370.json]
+[gw4] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest382.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallCodeOpCodeCheck.json]
+[gw1] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/FillStack.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_callcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToEmptyContract.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest382.json]
+[gw7] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest164.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_create.json]
+[gw4] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallCodeOpCodeCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_2.json]
+[gw0] [ 1%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/lt.json]
+[gw1] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/FillStack.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/not.json]
+[gw7] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonce.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_big_sum.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest164.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest254.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds3.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToEmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideMiddle.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_big_sum.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_following_successful_create.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest254.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest295.json]
+[gw1] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2a.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGE.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_afterFailing_create.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest295.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest151.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGE.json]
+[gw4] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_3.json]
+[gw7] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageReverted.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_afterFailing_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_successful_create.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest151.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest384.json]
+[gw1] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2a.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SLOAD_Bounds.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_too_big_transfer.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest384.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest121.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeEmptycontract.json]
+[gw5] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_too_big_transfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_delegatecall.json]
+[gw7] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageReverted.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceMinus1.json]
+[gw1] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SLOAD_Bounds.json]
+[gw7] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceMinus1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds4.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2callPrecompiles.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeEmptycontract.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest121.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest120.json]
+[gw0] [ 2%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/not.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/byte.json]
+[gw5] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_delegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/clearReturnBuffer.json]
+[gw4] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput1.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMBefore.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest120.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest89.json]
+[gw4] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest89.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest260.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01.json]
+[gw1] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds4.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds3.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest260.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest54.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_ABCB_RECURSIVE.json]
+[gw4] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_2.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest54.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest287.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideMiddle.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest287.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest347.json]
+[gw1] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2.json]
+[gw4] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter2.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest347.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest274.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011.json]
+[gw1] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMAfter.json]
+[gw7] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2callPrecompiles.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCode.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest274.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest63.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest63.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest204.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts2.json]
+[gw1] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2.json]
+[gw7] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideMiddle.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest204.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest130.json]
+[gw7] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollision.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest130.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest291.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode.json]
+[gw1] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds3.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest291.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest329.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest329.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest97.json]
+[gw0] [ 3%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/byte.json]
+[gw1] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds3.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/and.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest97.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest183.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest183.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest339.json]
+[gw1] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds3.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest339.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest104.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGE.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMAfter.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest104.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest51.json]
+[gw1] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds3.json]
+[gw7] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollision.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndataSize.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SSTORE_Bounds.json]
+[gw0] [ 3%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/and.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/xor.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest51.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest27.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11.json]
+[gw7] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndataSize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1023.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest27.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest28.json]
+[gw1] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SSTORE_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest28.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest33.json]
+[gw1] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds2.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest33.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest226.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGE.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGE.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest226.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest209.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMBefore.json]
+[gw1] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return2.json]
+[gw4] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE2.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest209.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest372.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_SuicideEnd.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest372.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest247.json]
+[gw1] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds2.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideEnd.json]
+[gw4] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_prefixed0.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest247.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest108.json]
+[gw4] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest108.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest300.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_SuicideEnd.json]
+[gw7] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1023.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedRevert.json]
+[gw1] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds3.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest300.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest144.json]
+[gw4] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMAfter.json]
+[gw0] [ 5%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/xor.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/gt.json]
+[gw4] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest144.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest116.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMBefore.json]
+[gw1] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds3.json]
+[gw7] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2a.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed2.json]
+[gw4] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest116.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest58.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_ABCB_RECURSIVE.json]
+[gw4] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls2.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest58.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest343.json]
+[gw7] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceDelegatecall.json]
+[gw1] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2a.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest343.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest201.json]
+[gw0] [ 5%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/gt.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/sgt.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest201.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest233.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMBefore.json]
+[gw1] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_Msize.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest233.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest270.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest270.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest87.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00.json]
+[gw1] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_Msize.json]
+src/tests/integration/test_conformance.py::test_bchain[stSLoadTest/sloadGasCost.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest87.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest325.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideEnd.json]
+[gw0] [ 5%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/sgt.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/or.json]
+[gw1] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSLoadTest/sloadGasCost.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstoreGas.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest325.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest342.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideMiddle.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideMiddle.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest342.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest161.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest161.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest250.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExisContractWithVTransferNEMoney.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest250.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest174.json]
+[gw6] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC1DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE4DiffPlaces.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest174.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest106.json]
+[gw0] [ 6%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/or.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/slt.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest106.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest228.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExisContractWithVTransferNEMoney.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_ABCB_RECURSIVE.json]
+[gw1] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstoreGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoX.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest228.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest158.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_OOGE.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideMiddle.json]
+[gw0] [ 6%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/slt.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jump.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_ABCB_RECURSIVE.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcode_checkPC.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest158.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest77.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest77.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest172.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest172.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest292.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest292.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest31.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest31.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest16.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest16.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest49.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcode_checkPC.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMAfter.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest49.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest251.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest251.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest90.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMAfter.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest90.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest22.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideMiddle.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGE.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest22.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest175.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest175.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest37.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111.json]
+[gw4] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndOOGatTxLevel.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest37.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest157.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMAfter.json]
+[gw7] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceDelegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_SuicideEnd.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest157.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest42.json]
+[gw4] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndOOGatTxLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_SUICIDE_OOGRevert.json]
+[gw7] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata.json]
+[gw4] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_SUICIDE_OOGRevert.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest42.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest276.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_2.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGE.json]
+[gw1] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest276.json]
+[gw7] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_outsize_then_create2_successful_then_returndatasize.json]
+[gw4] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromContractInitialization.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/deploymentError.json]
+[gw7] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_outsize_then_create2_successful_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGFromCallRefunds.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/deploymentError.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/tx_e1c174e2.json]
+[gw4] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_2.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/tx_e1c174e2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/OverflowGasMakeMoney.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/OverflowGasMakeMoney.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/push32withoutByte.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/push32withoutByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/FailedCreateRevertsDeletionParis.json]
+[gw0] [ 8%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jump.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+[gw2] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/FailedCreateRevertsDeletionParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/gasPrice0.json]
+[gw2] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/gasPrice0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_Attack.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromContractInitialization.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromCalledContract.json]
+[gw0] [ 8%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loop_stacklimit.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_3.json]
+[gw0] [ 8%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loop_stacklimit.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromCalledContract.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pop.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromContractInitialization.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore2.json]
+[gw0] [ 8%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pop.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpToPush.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromContractInitialization.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromCalledContract.json]
+[gw1] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/SstoreCallToSelfSubRefundBelowZero.json]
+[gw1] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/SstoreCallToSelfSubRefundBelowZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromCalledContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromCalledContract.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromCalledContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromContractInitialization.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromContractInitialization.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromTransaction.json]
+[gw6] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE4DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC3DiffPlaces.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore2.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromContractInitialization.json]
+[gw7] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGFromCallRefunds.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_FirstByte_loop.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromContractInitialization.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromCalledContract.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_Gas2999.json]
+[gw7] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_FirstByte_loop.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert2.json]
+[gw1] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toX.json]
+[gw7] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionBalance.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_then_create2_successful_then_returndatasize.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_then_create2_successful_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Suicide.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromCalledContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/StaticcallForPrecompilesIssue683.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/StaticcallForPrecompilesIssue683.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromTransaction.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_Gas2999.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMBefore.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromTransaction.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOG.json]
+[gw1] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toX.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoZ.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate3.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromTransaction.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle2.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts1.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest393.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Suicide.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb3.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest393.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest600.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide1.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest600.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest417.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata3.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest417.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest494.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_0_0_following_successful_create.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_0_0_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionNonce.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest494.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest399.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls3.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest399.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest455.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest455.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest633.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_revert_in_create.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest633.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest480.json]
+[gw7] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_revert_in_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest480.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest582.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest582.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest503.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest503.json]
+[gw7] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2checkFieldsInInitcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest452.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest452.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest421.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest421.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest596.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest596.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest488.json]
+[gw1] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoZ.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoY.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest488.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest472.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest472.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest524.json]
+[gw4] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4.json]
+[gw6] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC3DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc26DiffPlaces.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest524.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest630.json]
+[gw4] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest630.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest587.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest587.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest647.json]
+[gw7] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2checkFieldsInInitcode.json]
+[gw4] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionStorageParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_2.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest647.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest474.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest474.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest640.json]
+[gw4] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_2.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest640.json]
+[gw7] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionStorageParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest415.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageRevertedOOGInInit2.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest415.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest422.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest422.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest514.json]
+[gw7] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageRevertedOOGInInit2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOGBerlin.json]
+[gw4] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractAndCallItOOG.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest514.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest528.json]
+[gw4] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractAndCallItOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallLoseGasOOG.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest528.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest564.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest564.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest534.json]
+[gw4] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallLoseGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partial.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest534.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest499.json]
+[gw4] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partial.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_rip160.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest499.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest476.json]
+[gw7] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOGBerlin.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode2.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest476.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest497.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest497.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest414.json]
+[gw7] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedOOG.json]
+[gw1] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoY.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0toX.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest414.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest397.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest397.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest625.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest625.json]
+[gw7] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest412.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds2.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest412.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest607.json]
+[gw7] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2InitCodes.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest607.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest555.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest555.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest487.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest487.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest552.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest552.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest567.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest567.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest437.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest437.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest521.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest521.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest584.json]
+[gw7] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2InitCodes.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_create.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest584.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest641.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest641.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest588.json]
+[gw7] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollisionBerlin.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest588.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest523.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest523.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest409.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/clearReturnBuffer.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_staticcall.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest409.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest443.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_staticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest443.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest504.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemStartTooHigh.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest504.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest501.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemStartTooHigh.json]
+[gw1] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0toX.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoY.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest501.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest520.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw7] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollisionBerlin.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest520.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest396.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeZero.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeZero.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest396.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest451.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_Caller.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest451.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest626.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeTooHigh.json]
+[gw7] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2noCash.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeTooHigh.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest626.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest583.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeZero.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest583.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest517.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest517.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest450.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2noCash.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatasize_following_successful_create.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest450.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatasize_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest646.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_afterFailing_create.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeZero.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest646.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest471.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_afterFailing_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeInCreateReturnsCreate2.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeInCreateReturnsCreate2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_successful_create.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest471.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest407.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemStartTooHigh.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1024.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest407.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest603.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_emptyMem.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest603.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest419.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest419.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest628.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_MaxTopic.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest628.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest589.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeZero.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest589.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest388.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_MaxTopic.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest388.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest495.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest495.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest643.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeTooHigh.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2Recursive.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest643.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest597.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_PC.json]
+[gw1] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoY.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toXto0.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest597.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest395.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_PC.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest395.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest398.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemStartTooHigh.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest398.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest638.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemStartTooHigh.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest638.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest629.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_MaxTopic.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest629.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest577.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_Caller.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest577.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest466.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_emptyMem.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest466.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest608.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_emptyMem.json]
+[gw6] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc26DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDFDiffPlaces.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest608.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest624.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest624.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest562.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest562.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemStartTooHigh.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest535.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/logInOOG_Call.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest535.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest442.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/logInOOG_Call.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeTooHigh.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest442.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest457.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeTooHigh.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest457.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest416.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest416.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest575.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_emptyMem.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_emptyMem.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest575.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest533.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest533.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest481.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_PC.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest481.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest482.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_PC.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest482.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest425.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeTooHigh.json]
+[gw1] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toXto0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0to0.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeZero.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest425.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest645.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest645.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest506.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_emptyMem.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_emptyMem.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest506.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest438.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_Caller.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest438.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest496.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_Caller.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest496.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest461.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest461.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest473.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest473.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest572.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideEnd.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest572.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest553.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest553.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest648.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideEnd.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGE.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest648.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest467.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGE.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMBefore.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_SuicideEnd.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideEnd.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMBefore.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMBefore.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMBefore.json]
+[gw1] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0to0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoY.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest467.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest509.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_OOGE.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest509.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest639.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMAfter.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGE.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_OOGE.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest639.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest537.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest537.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest446.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest446.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest585.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+[gw7] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2Recursive.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest585.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest579.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata2.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01.json]
+[gw0] [ 17%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpToPush.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/gas.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest579.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest477.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+[gw7] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds.json]
+[gw0] [ 17%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/gas.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loopsConditionals.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest477.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest402.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest402.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest440.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideMiddle.json]
+[gw7] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOG.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest440.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest513.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011.json]
+[gw6] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDFDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBCDiffPlaces.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest513.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest563.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMAfter.json]
+[gw1] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoY.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoY.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest563.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest527.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest527.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest558.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideEnd.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest558.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest519.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGE.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest519.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest508.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMAfter.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest508.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest424.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2SmartInitCode.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest424.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest578.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGE.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest578.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest604.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGE.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2SmartInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertInCreateInInitCreate2Paris.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest604.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest498.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMBefore.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertInCreateInInitCreate2Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callcodeNonConst.json]
+[gw0] [ 18%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loopsConditionals.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest498.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest605.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/return.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_SuicideEnd.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callcodeNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/subNonConst.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest605.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest556.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest556.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest478.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideEnd.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/subNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstore8NonConst.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest478.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest554.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_SuicideEnd.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMAfter.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstore8NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log3NonConst.json]
+[gw0] [ 18%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/return.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore8.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log3NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/byteNonConst.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+[gw0] [ 18%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore8.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpi.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/byteNonConst.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/gtNonConst.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest554.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest465.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideEnd.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/gtNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log1NonConst.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest465.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest599.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest599.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest445.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest445.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest550.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log1NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/divNonConst.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest550.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest560.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_OOGE.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/divNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldatacopyNonConst.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_OOGE.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest560.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest601.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideMiddle.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest601.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest406.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest406.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest454.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest454.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest616.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldatacopyNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/balanceNonConst.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMAfter.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest616.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest649.json]
+[gw1] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoY.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toY.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest649.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest387.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/balanceNonConst.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulmodNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest387.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest644.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideMiddle.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulmodNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest644.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest510.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest510.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest469.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMAfter.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/xorNonConst.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMAfter.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest469.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest650.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGE.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSTATICCALL.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/xorNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/iszeroNonConst.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSTATICCALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extcodehashEmpty_Paris.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/iszeroNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sloadNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest650.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest439.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sloadNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest439.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/orNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest620.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest620.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest386.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/orNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/ltNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest386.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest475.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest475.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest569.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/ltNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/suicideNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest569.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest428.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest428.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/suicideNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest483.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/eqNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest483.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest505.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/eqNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/modNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest505.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest544.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extcodehashEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashChangedAccount.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest544.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest592.json]
+[gw5] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashChangedAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/codeCopyZero_Paris.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/modNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/expNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest592.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest470.json]
+[gw5] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/codeCopyZero_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccount.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest470.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest545.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/expNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sdivNonConst.json]
+[gw1] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toY.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoX.json]
+[gw5] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashPrecompiles.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest545.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest449.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest449.json]
+[gw6] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBCDiffPlaces.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sdivNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest531.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB2DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/delegatecallNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest531.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest516.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/delegatecallNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest516.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest500.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sgtNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest500.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest547.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sgtNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sltNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest547.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest627.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest627.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest389.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sltNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/signextNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest389.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest491.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest491.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest462.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/signextNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/codecopyNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest462.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest571.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/codecopyNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstoreNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest571.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest401.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest401.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest436.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstoreNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpNonConst.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest436.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest636.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addNonConst.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/returnNonConst.json]
+[gw0] [ 22%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpi.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pc.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/returnNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodecopyNonConst.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashPrecompiles.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashMaxCodeSize.json]
+[gw1] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoX.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodecopyNonConst.json]
+[gw0] [ 22%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pc.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulNonConst.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/msize.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest636.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest532.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashMaxCodeSize.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDELEGATECALL.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldataloadNonConst.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest532.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest635.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDELEGATECALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/createEmptyThenExtcodehash.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest635.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest541.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/createEmptyThenExtcodehash.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountStaticCall.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest541.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest435.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountStaticCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2Cancun.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldataloadNonConst.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest435.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest512.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/andNonConst.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2Cancun.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelfInInit.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest512.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest559.json]
+[gw0] [ 22%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/msize.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelfInInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashInInitCode.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/andNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addmodNonConst.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest559.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest493.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/sstore_sload.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest493.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest456.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addmodNonConst.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashInInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelf.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodesizeNonConst.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest456.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest418.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelf.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicide.json]
+[gw0] [ 23%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/sstore_sload.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/codecopy.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest418.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest566.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodesizeNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mloadNonConst.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest566.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest411.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicideCancun.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mloadNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpiNonConst.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest411.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest484.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicideCancun.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeCopyBounds.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest484.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest384.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpiNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/smodNonConst.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeCopyBounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest384.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest507.json]
+[gw0] [ 23%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/codecopy.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mload.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest507.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/dynamicAccountOverwriteEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest420.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/smodNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log0NonConst.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/dynamicAccountOverwriteEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashAccountWithoutCode.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest420.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest413.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashAccountWithoutCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNonExistingAccount.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest413.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest615.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log0NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sstoreNonConst.json]
+[gw0] [ 23%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mload.json]
+src/tests/integration/test_conformance.py::test_vm[vmLogTest/log3.json]
+[gw1] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionParis.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNonExistingAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToNonExistent.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest615.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest430.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest430.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest546.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sstoreNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/createNonConst.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest546.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest618.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/createNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/notNonConst.json]
+[gw1] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionParis.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest618.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest542.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_changeFromExternalCallInInitCode.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToNonExistent.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount4.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest542.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest637.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/notNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log2NonConst.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount4.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccountCancun.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest637.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest536.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest536.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest429.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccountCancun.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNewAccount.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log2NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sha3NonConst.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest429.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNewAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest565.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALL.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sha3NonConst.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest565.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds3.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest632.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALLCODE.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds3.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest632.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds5.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest433.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALLCODE.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1Cancun.json]
+[gw0] [ 24%] PASSED src/tests/integration/test_conformance.py::test_vm[vmLogTest/log3.json]
+src/tests/integration/test_conformance.py::test_vm[vmLogTest/log0.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds5.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest433.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest489.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/createBlobhashTx.json]
+[gw7] [ 24%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/createBlobhashTx.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1Cancun.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds7.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountRecheckInOuterCall.json]
+[gw7] [ 25%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds7.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhBounds.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest489.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest621.json]
+[gw5] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountRecheckInOuterCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDynamicArgument.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhBounds.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/wrongBlobhashVersion.json]
+[gw7] [ 25%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/wrongBlobhashVersion.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhashOutOfRange.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest621.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest539.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhashOutOfRange.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/emptyBlobhashList.json]
+[gw7] [ 25%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/emptyBlobhashList.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds6.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest539.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest502.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds6.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds4.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest502.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest444.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds4.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/14_revertAfterNestedStaticcall.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest444.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest518.json]
+[gw5] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDynamicArgument.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount3.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/14_revertAfterNestedStaticcall.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest518.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/19_oogUndoesTransientStore.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest548.json]
+[gw5] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount3.json]
+[gw1] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_changeFromExternalCallInInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toX.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountCall.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest548.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest610.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/19_oogUndoesTransientStore.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/17_tstoreGas.json]
+[gw0] [ 25%] PASSED src/tests/integration/test_conformance.py::test_vm[vmLogTest/log0.json]
+src/tests/integration/test_conformance.py::test_vm[vmLogTest/log2.json]
+[gw5] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToSuicideThenExtcodehash.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/17_tstoreGas.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageOK.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest610.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest543.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest543.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest485.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest485.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest447.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest447.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest581.json]
+[gw5] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToSuicideThenExtcodehash.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest581.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest408.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest408.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest410.json]
+[gw6] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB2DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4ADiffPlaces.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest410.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest511.json]
+[gw0] [ 26%] PASSED src/tests/integration/test_conformance.py::test_vm[vmLogTest/log2.json]
+src/tests/integration/test_conformance.py::test_vm[vmLogTest/log4.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToNotExistingContract.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToNotExistingContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/NewGasPriceForCodes.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/NewGasPriceForCodes.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel2.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel2.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64e0.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64e0.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64p1.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest511.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest576.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64p1.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_integerBoundaries.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest576.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest464.json]
+[gw1] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXto0.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest464.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest611.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest611.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest426.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest426.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest612.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest612.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest405.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest405.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest602.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest602.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest526.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest526.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest580.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest580.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest642.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_integerBoundaries.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAskMoreGasOnDepth2ThenTransactionHas.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest642.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest525.json]
+[gw0] [ 26%] PASSED src/tests/integration/test_conformance.py::test_vm[vmLogTest/log4.json]
+[gw7] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageOK.json]
+src/tests/integration/test_conformance.py::test_vm[vmLogTest/log1.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/10_revertUndoesStoreAfterReturn.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest525.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest460.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAskMoreGasOnDepth2ThenTransactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+[gw7] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/10_revertUndoesStoreAfterReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/15_tstoreCannotBeDosd.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest460.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CreateAndGasInsideCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest448.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest448.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CreateAndGasInsideCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest586.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest586.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest609.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/DelegateCallOnEIP.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest609.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest385.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/DelegateCallOnEIP.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64m1.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest385.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest574.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64m1.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest574.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest404.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToExistingContract.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToExistingContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT01.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest404.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest458.json]
+[gw0] [ 27%] PASSED src/tests/integration/test_conformance.py::test_vm[vmLogTest/log1.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/dup.json]
+[gw1] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXto0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT01.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/addressOpcodes.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest458.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/sec80.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/sec80.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_bigger.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_bigger.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexp.json]
+[gw6] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4ADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2EDiffPlaces.json]
+[gw1] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionNonZeroNonce.json]
+[gw0] [ 27%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/dup.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/blockInfo.json]
+[gw1] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionNonZeroNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYto0.json]
+[gw0] [ 27%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/blockInfo.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/calldataload.json]
+[gw0] [ 27%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/calldataload.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/sha3.json]
+[gw1] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYto0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoX.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/addressOpcodes.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/transactionCosts.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/sha3.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/push.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/transactionCosts.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT2.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT2.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/storageCosts.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0toX.json]
+[gw6] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE9DiffPlaces.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0toX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0to0.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/storageCosts.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/manualCreate.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/push.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/calldatasize.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/manualCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/variedContext.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0to0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_gasLeft.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_gasLeft.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceUpdate.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceUpdate.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceEqualsBalance.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceEqualsBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/diffPlaces.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/calldatasize.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/swap.json]
+[gw6] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2CDiffPlaces.json]
+[gw3] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexp.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/delegatecall09Undefined.json]
+[gw3] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/delegatecall09Undefined.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_smaller.json]
+[gw3] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_smaller.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/precompsEIP2929Cancun.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/swap.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/random.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/random.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/suicide.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/suicide.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/calldatacopy.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/calldatacopy.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/envInfo.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/diffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceGasCost.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceGasCost.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceCallTypes.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceCallTypes.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalance.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/byzantium/eip198_modexp_precompile/modexp.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/variedContext.json]
+[gw0] [ 29%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/envInfo.json]
+src/tests/integration/test_conformance.py::test_vm[vmPerformance/performanceTester.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toNonExistent.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toNonExistent.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toEpmtyParis.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toEpmtyParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/vitalikTransactionTestParis.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/vitalikTransactionTestParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide2.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide2.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_ZeroVCallSuicide.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_ZeroVCallSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/callToEmptyThenCallErrorParis.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/callToEmptyThenCallErrorParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXP_Empty.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXP_Empty.json]
+src/tests/integration/test_conformance.py::test_bchain[stChainId/chainId.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stChainId/chainId.json]
+src/tests/integration/test_conformance.py::test_bchain[stChainId/chainIdGasCost.json]
+[gw6] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2CDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB3DiffPlaces.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stChainId/chainIdGasCost.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_256.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shiftCombinations.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shiftCombinations.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr01.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr01.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_1.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_257.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_257.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_256.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0101.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0101.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl_2^255-1_1.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl_2^255-1_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_255.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_257.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_257.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_0.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_1.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_1.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_0.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_256.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_0.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr11.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr11.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar00.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar00.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_1.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl10.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl10.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shiftSignedCombinations.json]
+[gw6] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB3DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4CDiffPlaces.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shiftSignedCombinations.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_248.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_248.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_256.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_256.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_255.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_254.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_254.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar01.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar01.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_256.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0100.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0100.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_255.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^254_254.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^254_254.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar11.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar11.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_0_256-1.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_0_256-1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl11.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl11.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_1.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_255.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar10.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar10.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_255.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_255.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl01.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl01.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr10.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr10.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-ff.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-ff.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideEnd.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideEnd.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMBefore.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_SuicideEnd.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideEnd.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMBefore.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMBefore.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMBefore.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_OOGE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMAfter.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_OOGE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+[gw6] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4CDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc27DiffPlaces.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideMiddle.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMAfter.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGE.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMAfter.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11.json]
+[gw4] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_rip160.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_postfix0.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGE.json]
+[gw1] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/byzantium/eip198_modexp_precompile/modexp.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_stack_overflow.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGE.json]
+[gw4] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_postfix0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert3.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMBefore.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMAfter.json]
+[gw4] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE_2.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+[gw1] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_stack_overflow.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_during_fork.json]
+[gw1] [ 32%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_during_fork.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_before_fork.json]
+[gw1] [ 32%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_before_fork.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_out_of_gas.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+[gw4] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3.json]
+[gw1] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_out_of_gas.json]
+[gw4] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls3.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_two_different_transactions.json]
+[gw1] [ 32%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_two_different_transactions.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_pre_existing.json]
+[gw1] [ 32%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_pre_existing.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/reentrancy_selfdestruct_revert.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideEnd.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideTwice.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_OOGE.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideTwice.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToReturn1.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideMiddle.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_2.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd2.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMAfter.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest2.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideMiddle.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE2.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMAfter.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGE.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE3DiffPlaces.json]
+[gw2] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_Attack.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/StackDepthLimitSEC.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE_2.json]
+[gw2] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/StackDepthLimitSEC.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/sha3_deja.json]
+[gw2] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/sha3_deja.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_AttackwithJump.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore.json]
+[gw1] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/reentrancy_selfdestruct_revert.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx.json]
+[gw1] [ 33%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_pre_existing_contract_to_new_contract.json]
+[gw6] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc27DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD8DiffPlaces.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle2.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallOpCodeCheck.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallOpCodeCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_1.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_pre_existing_contract_to_new_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode_create_tx.json]
+[gw1] [ 34%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode_create_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_in_same_tx_with_revert.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_in_same_tx_with_revert.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_not_created_in_same_tx_with_revert.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_not_created_in_same_tx_with_revert.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode.json]
+[gw1] [ 34%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_same_block_different_tx.json]
+[gw1] [ 34%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_same_block_different_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/recreate_self_destructed_contract_different_txs.json]
+[gw1] [ 34%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/recreate_self_destructed_contract_different_txs.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx_increased_nonce.json]
+[gw5] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE3DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDEDiffPlaces.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_2.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_OneVCallSuicide.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_OneVCallSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromContractInitialization.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromContractInitialization.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx_increased_nonce.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts2_Paris.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_PostToReturn1.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_PostToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE2.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractAndCallIt_0wei.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractAndCallIt_0wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter.json]
+[gw6] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD8DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF8DiffPlaces.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_multi_tx.json]
+[gw1] [ 34%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_multi_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_new_contract_to_pre_existing_contract.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_NoGas.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_NoGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore2.json]
+[gw1] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_new_contract_to_pre_existing_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_after_store.json]
+[gw1] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_after_store.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/transient_storage_unset_values.json]
+[gw1] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/transient_storage_unset_values.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/contract_creation.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOGBonusGas.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOGBonusGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore2.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow.json]
+[gw1] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/contract_creation.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_tx.json]
+[gw1] [ 35%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_deployment_tx.json]
+[gw1] [ 35%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_deployment_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_gasprice.json]
+[gw1] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_gasprice.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_transaction_begin.json]
+[gw1] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_transaction_begin.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/subcall.json]
+[gw5] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5EDiffPlaces.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemStartTooHigh.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_2.json]
+[gw6] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF8DiffPlaces.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA5DiffPlaces.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter2.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_2.json]
+[gw0] [ 35%] PASSED src/tests/integration/test_conformance.py::test_vm[vmPerformance/performanceTester.json]
+src/tests/integration/test_conformance.py::test_vm[vmPerformance/loopMul.json]
+[gw0] [ 35%] SKIPPED src/tests/integration/test_conformance.py::test_vm[vmPerformance/loopMul.json]
+src/tests/integration/test_conformance.py::test_vm[vmPerformance/loopExp.json]
+[gw0] [ 35%] SKIPPED src/tests/integration/test_conformance.py::test_vm[vmPerformance/loopExp.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/add.json]
+[gw1] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/subcall.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_selfdestructing_call.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/add.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sub.json]
+[gw1] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_selfdestructing_call.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_reentrancy.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sub.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/signextend.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_2.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/signextend.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/smod.json]
+[gw1] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_reentrancy.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/run_until_out_of_gas.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/smod.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mod.json]
+[gw5] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0FDiffPlaces.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mod.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/divByZero.json]
+[gw6] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDDDiffPlaces.json]
+[gw5] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0FDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBEDiffPlaces.json]
+[gw3] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/precompsEIP2929Cancun.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/blake2B.json]
+[gw6] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDDDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD9DiffPlaces.json]
+[gw3] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/blake2B.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/idPrecomps.json]
+[gw5] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4EDiffPlaces.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/divByZero.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/addmod.json]
+[gw6] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB6DiffPlaces.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/addmod.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sdiv.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sdiv.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256Of256.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256Of256.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/not.json]
+[gw5] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4DDiffPlaces.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/not.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/fib.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/fib.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower2.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower2.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/arith.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/arith.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/twoOps.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/twoOps.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mulmod.json]
+[gw6] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE8DiffPlaces.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mulmod.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/exp.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/exp.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/div.json]
+[gw5] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4DDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCEDiffPlaces.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/div.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mul.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mul.json]
+src/tests/integration/test_conformance.py::test_rest_vm[vmPerformance/loopMul.json]
+[gw0] [ 37%] SKIPPED src/tests/integration/test_conformance.py::test_rest_vm[vmPerformance/loopMul.json]
+src/tests/integration/test_conformance.py::test_rest_vm[vmPerformance/loopExp.json]
+[gw0] [ 37%] SKIPPED src/tests/integration/test_conformance.py::test_rest_vm[vmPerformance/loopExp.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemSeg.json]
+[gw6] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE8DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEADiffPlaces.json]
+[gw5] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCADiffPlaces.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemSeg.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGas.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGasAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGasAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferAsk.json]
+[gw6] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE6DiffPlaces.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemoryAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemoryAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGas.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransferMemory.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransferMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemoryAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemoryAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemoryAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemoryAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929.json]
+[gw5] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1FDiffPlaces.json]
+[gw6] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2DDiffPlaces.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransfer.json]
+[gw3] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/idPrecomps.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexpTests.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostExp.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostExp.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929OOG.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawBalanceGas.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawBalanceGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyGas.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostJump.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostJump.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemory.json]
+[gw5] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1FDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAADiffPlaces.json]
+[gw6] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2DDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5FDiffPlaces.json]
+[gw5] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD0DiffPlaces.json]
+[gw6] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5FDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF7DiffPlaces.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeSizeGas.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeSizeGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemoryAsk.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemoryAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemory.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyMemoryGas.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyMemoryGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransfer.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasMemory.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCost.json]
+[gw3] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexpTests.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_AttackwithJump.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/eoaEmptyParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_1.json]
+[gw3] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover2.json]
+[gw3] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle.json]
+[gw3] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024OOG.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/eoaEmptyParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/block504980.json]
+[gw3] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter2.json]
+[gw3] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_gas3000.json]
+[gw3] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_gas3000.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls1.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/block504980.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/makeMoney.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/makeMoney.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/selfdestructEIP2929.json]
+[gw3] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueOOGinCall.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/selfdestructEIP2929.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/failed_tx_xcf416c53_Paris.json]
+[gw3] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueOOGinCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover1.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log_Caller.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/failed_tx_xcf416c53_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreGasOnCreate.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreGasOnCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageReverted.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageReverted.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4_gas719.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasPriceParis.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasPriceParis.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4_gas719.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls2.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCallFailed.json]
+[gw5] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD0DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDADiffPlaces.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCallFailed.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsOOG.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToItself.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToItself.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCall.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE2.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToZero.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesStopAfterSuicide.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesStopAfterSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToAddressh160minusOne.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_5.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToAddressh160minusOne.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasLimit.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_5.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4_gas99.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/EmptyTransaction3.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/EmptyTransaction3.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit2.json]
+[gw6] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC2DiffPlaces.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4_gas99.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverV_prefixed0.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverV_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallA.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit2.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesOOG.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallA.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_5.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionDataCosts652.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_ZeroVCallSuicide.json]
+[gw2] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionDataCosts652.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit.json]
+[gw2] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ValueOverflowParis.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_ZeroVCallSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertOpcodeCalls.json]
+[gw2] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ValueOverflowParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate1559.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertOpcodeCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore2.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter2.json]
+[gw2] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate1559.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount1559.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValue.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_CALL_OOGRevert.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_CALL_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate2.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle2.json]
+[gw2] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount1559.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToEmpty.json]
+[gw2] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToEmpty.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverR_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/PointAtInfinityECRecover.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverR_prefixed0.json]
+[gw2] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/PointAtInfinityECRecover.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeZero.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeZero.json]
+[gw2] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_1102.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate.json]
+[gw5] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE0DiffPlaces.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_1102.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverS_prefixed0.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverS_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01_OOGE.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate.json]
+[gw6] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC2DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2FDiffPlaces.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_overlappingInputOutput.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_overlappingInputOutput.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes2.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/OverflowGasRequire2.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/OverflowGasRequire2.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsSuccess.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsOOG.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsSuccess.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateTransactionSuccess.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes2.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateTransactionSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageSuccess.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimitSuccess.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimitSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsOOG.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_WithValue.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_WithValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert2_Paris.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmpty_Paris.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyOOG_Paris.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyOOG_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCallCode.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCallCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundOOG.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCreateReturns.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCreateReturns.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCall.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouchExactOOG_Paris.json]
+[gw0] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCost.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGas.json]
+[gw0] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostBerlin.json]
+[gw5] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE0DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/eip2315NotRemoved.json]
+[gw5] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/eip2315NotRemoved.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndSendMoneyToItselfEtherDestroyed.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/undefinedOpcodeFirstByte.json]
+[gw2] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndSendMoneyToItselfEtherDestroyed.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/Opcodes_TransactionInit.json]
+[gw5] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/undefinedOpcodeFirstByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBBDiffPlaces.json]
+[gw6] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2FDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcADDiffPlaces.json]
+[gw5] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBBDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidAddr.json]
+[gw6] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcADDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc21DiffPlaces.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouchExactOOG_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCallOOG_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCallOOG_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefound.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefound.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCreateInInit_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCreateInInit_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_storage_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_storage_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertRemoteSubCallStorageOOG.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertRemoteSubCallStorageOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToNonZeroBalance.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToOneStorageKey_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToNonZeroBalance.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToEmpty_Paris.json]
+[gw6] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc21DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD1DiffPlaces.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToNonZeroBalance.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToEmpty_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/Opcodes_TransactionInit.json]
+[gw3] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_send_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE.json]
+[gw0] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostBerlin.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferAsk.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToNonZeroBalance.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_send_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_callsItself.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_callsItself.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP3607/initCollidingWithNonEmptyAccount.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToNonZeroBalance.json]
+[gw0] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemory.json]
+[gw0] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemory.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+[gw0] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemory.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToNonZeroBalance.json]
+[gw0] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemory.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer2.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToEmpty_Paris.json]
+[gw0] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer2.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGas.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP3607/initCollidingWithNonEmptyAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_init_Paris.json]
+[gw0] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasAsk.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL.json]
+[gw0] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasAsk.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929-ff.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_getEtherBack.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_init_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_calls.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_calls.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_getEtherBack.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_changeNonZeroStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest311.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest311.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest238.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_changeNonZeroStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideStorage.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest238.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest185.json]
+[gw3] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideTwice.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest185.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest381.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest381.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest43.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideTwice.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_multimpleSuicide.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest43.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest285.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_multimpleSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSuicide50procentCap.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest285.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest2.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929-ff.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransfer.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest197.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostReturn.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSuicide50procentCap.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_NoOOG_1.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest197.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest85.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGas.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_NoOOG_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_notEnoughGasInCall.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_128.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest85.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest115.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_notEnoughGasInCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50percentCap.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest115.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50percentCap.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest41.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest41.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest305.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicide.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest305.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund600.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest336.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest336.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund600.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest367.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_OOG.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_128.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSSTORE.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest367.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest210.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSSTORE.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest210.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicideOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest211.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicideOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_1.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest211.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest320.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_singleSuicide.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest320.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest73.json]
+[gw5] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidAddr.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_singleSuicide.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest73.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest369.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideNoStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC9DiffPlaces.json]
+[gw0] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_128.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest369.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest221.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_96.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideNoStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_2.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest221.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest67.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_2.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest67.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundFF.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest159.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundFF.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundMax.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundMax.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA.json]
+[gw0] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_128.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsBefore.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest159.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest129.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAfterTransition.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest129.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest156.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAfterTransition.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAtTransition.json]
+[gw6] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD1DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE1DiffPlaces.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest156.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest3.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAtTransition.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAt.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest3.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest194.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAt.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallBeforeTransition.json]
+[gw0] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_25000_128.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest194.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallBeforeTransition.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest138.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAfter.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_2.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest138.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest230.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_postfixed0.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest230.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest95.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_postfixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas18.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest95.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest357.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas18.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_NoGas.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest357.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest153.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_NoGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest153.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest5.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_35000.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest5.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest14.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest14.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest315.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest315.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest24.json]
+[gw0] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_96.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest24.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest380.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest380.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest350.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest350.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest199.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest199.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest379.json]
+[gw0] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_64.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest379.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest243.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest243.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest179.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest179.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest332.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_35000.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest332.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest81.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas18.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas18.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest81.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest207.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest207.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest148.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_completeReturnValue.json]
+[gw0] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_64.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_completeReturnValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverH_prefixed0.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest148.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest84.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_80.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest84.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverH_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLength.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest304.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLength.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest304.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest103.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover80.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest103.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest217.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover80.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest217.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest124.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverWeirdV.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest124.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest143.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest143.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest176.json]
+[gw0] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_96.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest176.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest232.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest232.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest114.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest114.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest220.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest220.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest294.json]
+[gw0] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_128.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest294.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest365.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest365.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest48.json]
+[gw5] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD2DiffPlaces.json]
+[gw0] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_64.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest48.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest12.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest12.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest359.json]
+[gw0] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_64.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest359.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest145.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest145.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest137.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest137.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest30.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest30.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest259.json]
+[gw0] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_128.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest259.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest131.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest131.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest134.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest134.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest245.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest245.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest163.json]
+[gw6] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE1DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC6DiffPlaces.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest163.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest266.json]
+[gw0] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_21000_128.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest266.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest187.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest187.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest248.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest248.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest112.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest112.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest126.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverWeirdV.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover_Overflow.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest126.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest355.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest355.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest166.json]
+[gw0] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_128.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest166.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest39.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest39.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest57.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest57.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest17.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest17.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest74.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest74.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest191.json]
+[gw0] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_96.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover_Overflow.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_1_nonzeroValue.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest191.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest231.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_0.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest231.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest15.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexpRandomInput.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest15.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest119.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest119.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest118.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest118.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest301.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest301.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest338.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexpRandomInput.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4_gas719.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest338.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest249.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4_gas719.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_1.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest249.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest146.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_25000.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest146.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest275.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest275.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest150.json]
+[gw0] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_128.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_25000.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_overlappingInputOutput.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_overlappingInputOutput.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_5.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_NoGas.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_NoGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_postfix0.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_postfix0.json]
+[gw5] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD2DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE2DiffPlaces.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest150.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest110.json]
+[gw0] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_128.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest110.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_25000_192.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest18.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverS_prefixed0.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest18.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest149.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverS_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_5.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest149.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest202.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest202.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest298.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_Gas2999.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest298.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest96.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest96.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest25.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_Gas2999.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover1.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest25.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest52.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest52.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest310.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas17.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest310.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest1.json]
+[gw0] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_25000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_80_Paris.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest1.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas17.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverR_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest0.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverR_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_gas3000.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest0.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest323.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_gas3000.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest323.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest345.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_prefix0.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_prefix0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverInvalidSignature.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest345.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest55.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverInvalidSignature.json]
+[gw6] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_0.json]
+[gw0] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_80_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_21000_128.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest55.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest269.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverH_prefixed0.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest269.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest188.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverH_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_5.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest188.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest133.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_1.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest133.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest265.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest265.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest246.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest246.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest327.json]
+[gw0] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_96.json]
+[gw3] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_2.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest327.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest371.json]
+[gw3] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_0input.json]
+[gw3] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_0input.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLBlake2f.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest371.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest341.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest341.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest72.json]
+[gw0] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_96.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest72.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest66.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest66.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest361.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest361.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest306.json]
+[gw0] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_128.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest306.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest125.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest125.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest363.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest363.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest142.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest142.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest47.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest47.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest334.json]
+[gw0] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_128.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest334.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest376.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest376.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest92.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest92.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest366.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest366.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest288.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest288.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest309.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest309.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest340.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest340.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest267.json]
+[gw0] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_128.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest267.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest362.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest362.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest368.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest368.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest353.json]
+[gw0] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_128.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest353.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest364.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest364.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest64.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest64.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest349.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest349.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest189.json]
+[gw5] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE2DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/operationDiffGas.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest189.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest10.json]
+[gw0] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_0.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest10.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest216.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest216.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest278.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest278.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest173.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest173.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest88.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest88.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest6.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest6.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest322.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest322.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest356.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest356.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest100.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest100.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest282.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest282.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest318.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest318.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest205.json]
+[gw0] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_0.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest205.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest378.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest378.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest206.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest206.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest11.json]
+[gw0] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_128.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest11.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest273.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest273.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest190.json]
+[gw3] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLBlake2f.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_prefixed0.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest190.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest215.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest215.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest154.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4.json]
+[gw5] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/operationDiffGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA8DiffPlaces.json]
+[gw0] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_128.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixed0.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLengthWrongV.json]
+[gw6] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEDDiffPlaces.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLengthWrongV.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover3.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest154.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest60.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverShortBuff.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest60.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest268.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest268.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest351.json]
+[gw0] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_64.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest351.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest135.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverShortBuff.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest135.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4_gas99.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest321.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4_gas99.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas17.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest321.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest198.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas17.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover3.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest198.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest82.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEBlake2f.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest82.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest80.json]
+[gw0] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_128.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest80.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest212.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest212.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest225.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest225.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest200.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest200.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest62.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest62.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest279.json]
+[gw0] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_128.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest279.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest117.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest117.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest208.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest208.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest19.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest19.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest53.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest53.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest236.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest236.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest261.json]
+[gw0] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_96.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest261.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest280.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest280.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest337.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest337.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest299.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest299.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest271.json]
+[gw0] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_96.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest271.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest312.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_96.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest312.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest257.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest257.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest354.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest354.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest13.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest13.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest313.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest313.json]
+[gw0] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest147.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_96.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest147.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest214.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest214.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest107.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest107.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest286.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest286.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest296.json]
+[gw0] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_192.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest296.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest105.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest105.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest346.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest346.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest283.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest283.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest227.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest227.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest222.json]
+[gw0] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_128.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest222.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest178.json]
+[gw5] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA8DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC0DiffPlaces.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest178.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest36.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest36.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest348.json]
+[gw6] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEDDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/measureGas.json]
+[gw3] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEBlake2f.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest348.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_gas3000.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest20.json]
+[gw3] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_gas3000.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_1.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest20.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest155.json]
+[gw3] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_3.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest155.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest219.json]
+[gw3] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixedf0.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest219.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest180.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest180.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest242.json]
+[gw3] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixedf0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest242.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest192.json]
+[gw3] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_20500.json]
+[gw0] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_80.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest192.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest335.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest335.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest302.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest302.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest307.json]
+[gw3] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_20500.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_6_inputShorterThanOutput.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest307.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest290.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest290.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest69.json]
+[gw3] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_6_inputShorterThanOutput.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest69.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest169.json]
+[gw0] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_96.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverR_prefixed0.json]
+[gw6] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/measureGas.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest169.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest196.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAEDiffPlaces.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverR_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover2.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest196.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest98.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_0.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest98.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest9.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4_gas99.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest9.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest358.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4_gas99.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_0.json]
+[gw0] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_25000_128.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest358.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest171.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4_gas719.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest171.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest29.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4_gas719.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_5.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest29.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest122.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest122.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest308.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_prefix0.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_prefix0.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest308.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest316.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover80.json]
+[gw0] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_128.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover80.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest316.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest111.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest111.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest360.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_1.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_2.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest360.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest244.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_3.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest244.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest102.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverS_prefixed0.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest102.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest83.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverS_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverUnrecoverableKey.json]
+[gw0] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_128.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest83.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest139.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverUnrecoverableKey.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest139.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest352.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest352.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest78.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1_nonzeroValue.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest78.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest162.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_5.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest162.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest237.json]
+[gw0] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_21000_128.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest237.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest252.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_2.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest252.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest281.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover2.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest281.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest333.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest333.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest167.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest167.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest383.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_2.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest383.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest59.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover1.json]
+[gw0] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_96.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest59.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest4.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_0.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_0.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_0input.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest326.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_0input.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_postfixed0.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest326.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest303.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_postfixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest303.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest184.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_completeReturnValue.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest184.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest45.json]
+[gw0] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_128.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest45.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_completeReturnValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest23.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_1_nonzeroValue.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest23.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest263.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_1_nonzeroValue.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest263.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverV_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest297.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest297.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverV_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_fail_1.json]
+[gw0] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_128.json]
+[gw5] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC0DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcABDiffPlaces.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_fail_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_128.json]
+[gw0] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_96.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter2.json]
+[gw0] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_128.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog2.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertDepth2.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_64.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertDepth2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromCalledContract.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromCalledContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_3.json]
+[gw6] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA6DiffPlaces.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_80.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_64.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_128.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_2.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_3.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_192.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE2.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsThenRevert.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_192.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_96.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_128.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_21000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_128.json]
+[gw5] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcABDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBADiffPlaces.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_96.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_21000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_128.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero_and_g1_invalid.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_96.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero_and_g1_invalid.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_96.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_64.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_96.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_128.json]
+[gw6] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0EDiffPlaces.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_128.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_191.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_128.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_96.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_191.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_128.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_128.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_128.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_192.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_96.json]
+[gw5] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBDDiffPlaces.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_25000_128.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_96.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_64.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_64.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_25000_80_Paris.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_128.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_25000_80_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_96.json]
+[gw6] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc25DiffPlaces.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_96.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_96_Paris.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_128.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_96_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_96.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_1.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_128.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_64.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_128.json]
+[gw3] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_96.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_40.json]
+[gw3] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_2.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_40.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_96.json]
+[gw5] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBDDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc28DiffPlaces.json]
+[gw3] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_80.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_96.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_80.json]
+[gw6] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc25DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB0DiffPlaces.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_96.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_80.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_80.json]
+[gw3] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_80.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_192.json]
+[gw3] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_80.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_192.json]
+[gw3] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_128.json]
+[gw5] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc28DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0DDiffPlaces.json]
+[gw3] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_128.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_96.json]
+[gw3] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_field_modulus.json]
+[gw3] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_field_modulus.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_128.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_96.json]
+[gw6] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB0DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCDDiffPlaces.json]
+[gw3] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_curve_order.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_128.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_curve_order.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_128.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_128.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_128.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_128.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_80.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_40.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_128.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_40.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_128.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_96.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_128.json]
+[gw5] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0DDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidDiffPlaces.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_not_in_subgroup.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_192.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_not_in_subgroup.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_128.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_80.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_96.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_128.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_96.json]
+[gw6] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCDDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF6DiffPlaces.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_96.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_128.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_96.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_128.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_one.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_128.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_one.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_curve_order.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_128.json]
+[gw3] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_curve_order.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_28000_128.json]
+[gw5] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2BDiffPlaces.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_192.json]
+[gw3] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_96.json]
+[gw3] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_match_1.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_96.json]
+[gw3] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_match_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_oog.json]
+[gw6] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB8DiffPlaces.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_128.json]
+[gw3] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_oog.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_0.json]
+[gw3] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd2.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_128.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_64.json]
+[gw5] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2BDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcECDiffPlaces.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_25000_128.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_128.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_96.json]
+[gw6] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB8DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc22DiffPlaces.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_0.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_21000_128.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_21000_80.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_80.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_64.json]
+[gw5] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcECDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2ADiffPlaces.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_128.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_96.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_128.json]
+[gw6] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc22DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD7DiffPlaces.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_192.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_80.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_64.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_96.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_96.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_96.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_128.json]
+[gw5] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2ADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA7DiffPlaces.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_96.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_96.json]
+[gw3] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_3.json]
+[gw6] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC4DiffPlaces.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_96.json]
+[gw3] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_80.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_128.json]
+[gw3] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_128.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/transactionIntinsicBug_Paris.json]
+[gw0] [ 64%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/transactionIntinsicBug_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/typeTwoBerlin.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/typeTwoBerlin.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowFeeCap.json]
+[gw0] [ 64%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowFeeCap.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowGasLimit.json]
+[gw3] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_inputs.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowGasLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/tipTooHigh.json]
+[gw0] [ 64%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/tipTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/valCausesOOF.json]
+[gw0] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/valCausesOOF.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/intrinsic.json]
+[gw5] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB7DiffPlaces.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsThenRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_1.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel2.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_SuicideEnd.json]
+[gw6] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC4DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5CDiffPlaces.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToDelCallOpCodeCheck.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToDelCallOpCodeCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndGasOOG.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall2.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE2.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partialFail.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partialFail.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump1.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump0.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorZeorSizeMemExpansion.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorZeorSizeMemExpansion.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherPostDeath.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherPostDeath.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigRight.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigRight.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherToMe.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherToMe.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/TestNameRegistrator.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/TestNameRegistrator.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds1.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CreateHashCollision.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CreateHashCollision.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTest.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeTo0.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeTo0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb2.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return0.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/testRandomTest.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/testRandomTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideOrigin.json]
+[gw5] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDCDiffPlaces.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideOrigin.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory0.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb3.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb3.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callValue.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return1.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callerAccountBalance.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callerAccountBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTouch_Paris.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTouch_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory0.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToReturn1.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigRight.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigRight.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistrator.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistrator.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide1.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigLeft.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigLeft.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/PostToReturn1.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/PostToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem2.json]
+[gw6] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5CDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAFDiffPlaces.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory1.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls2.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorValueTooHigh.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorValueTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CalltoReturn2.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CalltoReturn2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/currentAccountBalance.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/currentAccountBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls3.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls3.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorOutOfGas.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorOutOfGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory1.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createWithInvalidOpcode.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createWithInvalidOpcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb1.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideNotExistingAccount.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideNotExistingAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide0.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog2.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistrator0.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistrator0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/extcodecopy.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/extcodecopy.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigRight.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigRight.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOOG_MemExpansionOOV.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOOG_MemExpansionOOV.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog.json]
+[gw5] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDCDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDBDiffPlaces.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorMemOOGAndInsufficientBalance.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorMemOOGAndInsufficientBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigLeft.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigLeft.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideAddress.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideAddress.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMemExpansion.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMemExpansion.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/Call10.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/Call10.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/multiSelfdestruct.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/multiSelfdestruct.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigLeft.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigLeft.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return2.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds0.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistrator0.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistrator0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+[gw6] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAFDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC5DiffPlaces.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls0.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorZeroMemExpanion.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorZeroMemExpanion.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/balanceInputAddressTooBig.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/balanceInputAddressTooBig.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory2.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls1.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCaller.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCaller.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToNonZeroBalance_OOGRevert.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToNonZeroBalance_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_OOGRevert.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_OOGRevert.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_inputs.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_96.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToOneStorageKey_OOGRevert_Paris.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToOneStorageKey_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToOneStorageKey_OOGRevert_Paris.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToOneStorageKey_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_OOGRevert.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToEmpty_OOGRevert_Paris.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToEmpty_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToNonZeroBalance_OOGRevert.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToNonZeroBalance_OOGRevert.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToEmpty_OOGRevert_Paris.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToEmpty_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_OOGRevert.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToOneStorageKey_OOGRevert_Paris.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToOneStorageKey_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToOneStorageKey_OOGRevert_Paris.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToOneStorageKey_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToNonZeroBalance_OOGRevert.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_96.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToNonZeroBalance_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToNonZeroBalance_OOGRevert.json]
+[gw5] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDBDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC7DiffPlaces.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToNonZeroBalance_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToEmpty_OOGRevert_Paris.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToEmpty_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToEmpty_OOGRevert_Paris.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToEmpty_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_staticcall.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_staticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_staticcall.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_96.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_staticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/tooLongReturnDataCopy.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pairingTest.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/tooLongReturnDataCopy.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_call_value_fail_then_returndatasize.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_call_value_fail_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/revertRetDataSize.json]
+[gw6] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc29DiffPlaces.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pairingTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_80.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_96.json]
+[gw5] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEBDiffPlaces.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_128.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_128.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/revertRetDataSize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_oog_after_deeper.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_oog_after_deeper.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_callcode.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_callcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_outsize_then_create_successful_then_returndatasize.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_128.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_outsize_then_create_successful_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_delegatecall.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_delegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/create_callprecompile_returndatasize.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/create_callprecompile_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_create_successful_then_returndatasize.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_create_successful_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_overrun.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_overrun.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_0_0_following_successful_create.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_96.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_0_0_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_revert_in_staticcall.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc29DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/StackUnderFlowContractCreation.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_revert_in_staticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert_in_create.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/StackUnderFlowContractCreation.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOG.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert_in_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_ecrec_success_empty_then_returndatasize.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallTheContractToCreateEmptyContract.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_ecrec_success_empty_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_callcode.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallTheContractToCreateEmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractAndCallItOOG.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_callcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/subcallReturnMoreThenExpected.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractAndCallItOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractInInitCode.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractInInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallRecursiveContract.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/subcallReturnMoreThenExpected.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_bug.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_96.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_bug.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_callcode.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallRecursiveContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateSuicideInInitcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_128.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_callcode.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateSuicideInInitcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial_zero_read.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateStopInInitcode.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateStopInInitcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasPrefundedContractCreation.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial_zero_read.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_call.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_call.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_delegatecall.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasPrefundedContractCreation.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateAutoSuicideContract.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_delegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_staticcall.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateAutoSuicideContract.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_staticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest.json]
+[gw3] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_96.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasContractCreation.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasContractCreation.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput1.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractNoCash.json]
+[gw3] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_one.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput1.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContract.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractNoCash.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateRandomInitCode.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateRandomInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOGBonusGas.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024OOG.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOGBonusGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest2.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest2.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwnerNew.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024OOG.json]
+[gw3] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_one.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024BalanceTooLow.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwnerNew.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwner.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_ownerIsNotOwner.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_ownerIsNotOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo0.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo0.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteUnderDailyLimit.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024BalanceTooLow.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallRecursiveBombPreCall.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteUnderDailyLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimit.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_80.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGas.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletAddOwnerRemovePendingTransaction.json]
+[gw5] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEBDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC8DiffPlaces.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletAddOwnerRemovePendingTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimitNoData.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallRecursiveBombPreCall.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimitNoData.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partial.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_fromNotOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_80.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partial.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callWithHighValueAndGasOOG.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_fromNotOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionPartial.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callWithHighValueAndGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionPartial.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConfirm.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode2SelfCall.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode2SelfCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallcodeLoseGasOOG.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConfirm.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGasPartial.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_128.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGasPartial.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwnerNoArgument.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwnerNoArgument.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_mySelf.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallcodeLoseGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeOutput3.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeOutput3.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_mySelf.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput2.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo1.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput2.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallBasic.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo1.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_toIsOwner.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallBasic.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallValueCheck.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_toIsOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitMultiOwner.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallValueCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024OOG.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitMultiOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitResetSpentToday.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitResetSpentToday.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionCorrect.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionCorrect.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefaultWithOutValue.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefaultWithOutValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo2.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_128.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo2.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstruction.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstruction.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerFalse.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_128.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerFalse.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwnerByNonOwner.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/deleagateCallAfterValueTransfer.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwnerByNonOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/deleagateCallAfterValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallSenderCheck.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwnerAddMyself.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallSenderCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallOOGinCall.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwnerAddMyself.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeRequirementRemovePendingTransaction.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallOOGinCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallAndOOGatTxLevel.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeRequirementRemovePendingTransaction.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_fail.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionOOG.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallAndOOGatTxLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partialFail.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partialFail.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination2.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackSizeLargerThan1024.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRevokeNothing.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_fail.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_96.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRevokeNothing.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillToWallet.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillToWallet.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletRemoveOwnerRemovePendingTransaction.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletRemoveOwnerRemovePendingTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerTrue.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerTrue.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKill.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_96.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKill.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefault.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefault.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillNotByOwner.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillNotByOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstruction.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_128.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstruction.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionOOG.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwner.json]
+[gw2] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackSizeLargerThan1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024PreCalls.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionPartial.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_96.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionPartial.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeOwnerRemovePendingTransaction.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeOwnerRemovePendingTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/labelsExample.json]
+[gw5] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC8DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1EDiffPlaces.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAddTrunc.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/labelsExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/yulExample.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/yulExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/mergeTest.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/mergeTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/add11_yml.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/add11_yml.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/basefeeExample.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/basefeeExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/indexesOmitExample.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/indexesOmitExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/add11.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/add11.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/solidityExample.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/solidityExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/invalidTr.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/invalidTr.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/eip1559.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/eip1559.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/rangesExample.json]
+[gw2] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024PreCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxsNotEnoughGas.json]
+[gw2] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxsNotEnoughGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit2.json]
+[gw2] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partialFail.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partialFail.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValueAndGasOOG.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValueAndGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPreStore1NotEnoughGas.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPreStore1NotEnoughGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallLoseGasOOG.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallLoseGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValue.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3Fail.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3Fail.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitOOGforCREATE.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitOOGforCREATE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput1.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput1.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024OOG.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/rangesExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/accessListExample.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/accessListExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/ExecuteCallThatAskMoreGasThenTransactionHasWithMemExpandingCalls.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/ExecuteCallThatAskMoreGasThenTransactionHasWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevelWithMemExpandingCalls.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevelWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/NewGasPriceForCodesWithMemExpandingCalls.json]
+[gw3] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAddTrunc.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_193.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/NewGasPriceForCodesWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAndCallcodeConsumeMoreGasThenTransactionHasWithMemExpandingCalls.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackUnderflow.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAndCallcodeConsumeMoreGasThenTransactionHasWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevel2WithMemExpandingCalls.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackUnderflow.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024BalanceTooLow.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevel2WithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CreateAndGasInsideCreateWithMemExpandingCalls.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CreateAndGasInsideCreateWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAskMoreGasOnDepth2ThenTransactionHasWithMemExpandingCalls.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAskMoreGasOnDepth2ThenTransactionHasWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/DelegateCallOnEIPWithMemExpandingCalls.json]
+[gw3] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_193.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_128.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/DelegateCallOnEIPWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/OOGinReturn.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024BalanceTooLow.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput2.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024BalanceTooLow.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/OOGinReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContract.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+[gw5] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEFDiffPlaces.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContractOOGInitCode.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024BalanceTooLow.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallRecursiveBombPreCall.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContractOOGInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContract.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaTransactionCost53000.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaTransactionCost53000.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_2_Paris.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallRecursiveBombPreCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3Fail.json]
+[gw3] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_128.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3Fail.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partial.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partial.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndOOGatTxLevel.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndOOGatTxLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction.json]
+[gw3] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_128.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndGasOOG.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput1.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput1.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+[gw3] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_4.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallcodeLoseGasOOG.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallcodeLoseGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partial.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partial.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxs.json]
+[gw3] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_80.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxs.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput2.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_NoCollision.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_NoCollision.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024OOG.json]
+[gw3] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_128.json]
+[gw3] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_64.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createFailBalanceTooLow.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createFailBalanceTooLow.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction2.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_128.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValue.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueOOGinCall.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueOOGinCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorendowmentTooHigh.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorendowmentTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_ExampleContract.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_ExampleContract.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partialFail.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partialFail.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/transactionIntinsicBug_Paris.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/transactionIntinsicBug_Paris.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowFeeCap.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowFeeCap.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowGasLimit.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowGasLimit.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/tipTooHigh.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/tipTooHigh.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowGasPriceOldTypes.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowGasPriceOldTypes.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_during_fork.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_during_fork.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_before_fork.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_before_fork.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_two_different_transactions.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_two_different_transactions.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_pre_existing.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_pre_existing.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode_create_tx.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode_create_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_same_block_different_tx.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_same_block_different_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/recreate_self_destructed_contract_different_txs.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/recreate_self_destructed_contract_different_txs.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_multi_tx.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_multi_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_tx.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_deployment_tx.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_deployment_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_negative_excess_blob_gas.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_negative_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_post_fork_block_without_blob_fields.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_post_fork_block_without_blob_fields.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas.json]
+[gw2] [ 76%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_zero_excess_blob_gas_in_header.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_zero_excess_blob_gas_in_header.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_single_tx.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_single_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/precompile_during_fork.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/precompile_during_fork.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_target_blobs_increase_from_zero.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_target_blobs_increase_from_zero.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blob_type_tx_pre_fork.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blob_type_tx_pre_fork.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/precompile_before_fork.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/precompile_before_fork.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/fork_transition_excess_blob_gas.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/fork_transition_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_tx_contract_creation.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_tx_contract_creation.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_above_target_change.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_above_target_change.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blob_gas_subtraction_tx.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blob_gas_subtraction_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_max_fee_per_blob_gas.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_max_fee_per_blob_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx_combinations.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx_combinations.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_multiple_txs_in_block.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_multiple_txs_in_block.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_change.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_change.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_block_blob_count.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_block_blob_count.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_normal_gas.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_normal_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_pre_fork_block_with_blob_fields.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_pre_fork_block_with_blob_fields.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_gas_used_in_header.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_gas_used_in_header.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_non_multiple_excess_blob_gas.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_non_multiple_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/reject_valid_full_blob_in_block_rlp.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/reject_valid_full_blob_in_block_rlp.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_blob_count.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_blob_count.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_multiple_txs.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_multiple_txs.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_transition.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_transition.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/shanghai/eip4895_withdrawals/no_evm_execution.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/shanghai/eip4895_withdrawals/no_evm_execution.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/frontier/opcodes/double_kill.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/frontier/opcodes/double_kill.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/paris/security/tx_selfdestruct_balance_bug.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/paris/security/tx_selfdestruct_balance_bug.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/constantinople/eip1014_create2/recreate.json]
+[gw2] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/constantinople/eip1014_create2/recreate.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/createBlobhashTx.json]
+[gw2] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/createBlobhashTx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds7.json]
+[gw2] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds7.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/wrongBlobhashVersion.json]
+[gw2] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/wrongBlobhashVersion.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/emptyBlobhashList.json]
+[gw2] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/emptyBlobhashList.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_calls.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_128.json]
+[gw5] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEFDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB1DiffPlaces.json]
+[gw2] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_calls.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/multi_block_beacon_root_timestamp_calls.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_128.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_96.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_96.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_96.json]
+[gw2] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/multi_block_beacon_root_timestamp_calls.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_transition.json]
+[gw2] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_transition.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_selfdestruct.json]
+[gw2] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_selfdestruct.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_equal_to_timestamp.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_insufficient_gas.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_insufficient_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_128.json]
+[gw2] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_equal_to_timestamp.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/tx_to_beacon_root_contract.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_96.json]
+[gw2] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/tx_to_beacon_root_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_deploy.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_points_with_one_g2_zero.json]
+[gw2] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_deploy.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/calldata_lengths.json]
+[gw5] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB1DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFBDiffPlaces.json]
+[gw2] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/calldata_lengths.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_points_with_one_g2_zero.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/berlin/eip2930_access_list/access_list.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_96.json]
+[gw2] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/berlin/eip2930_access_list/access_list.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/multiple_withdrawals_same_address.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_128.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_128.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_96.json]
+[gw2] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/multiple_withdrawals_same_address.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/balance_within_block.json]
+[gw2] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/balance_within_block.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/self_destructing_account.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_96.json]
+[gw2] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/self_destructing_account.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/newly_created_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_1.json]
+[gw2] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/newly_created_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/large_amount.json]
+[gw2] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/large_amount.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/many_withdrawals.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_96.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_96.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_96.json]
+[gw5] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFBDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCBDiffPlaces.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideMiddle.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode2SelfCall.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode2SelfCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMAfter.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideEnd.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideEnd.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGE.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE_valueTransfer.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE_valueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideMiddle.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGE.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMBefore.json]
+[gw2] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/many_withdrawals.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_contract.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_SuicideEnd.json]
+[gw3] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideEnd.json]
+[gw2] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_tx.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMBefore.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideEnd.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContractWithValueTransfer.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/withdrawing_to_precompiles.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContractWithValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMBefore.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContract.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMBefore.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_OOGE.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover3.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter2.json]
+[gw5] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCBDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCFDiffPlaces.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callBasic.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/withdrawing_to_precompiles.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/zero_amount.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callBasic.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd2.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity2.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/zero_amount.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/no_evm_execution.json]
+[gw2] [ 80%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/no_evm_execution.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_gas_usage.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_gas_usage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_call_out_of_gas.json]
+[gw7] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/15_tstoreCannotBeDosd.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageReset.json]
+[gw5] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCFDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF9DiffPlaces.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_call_out_of_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/create_opcode_initcode.json]
+[gw7] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageReset.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/21_tstoreCannotBeDosdOOO.json]
+[gw5] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc23DiffPlaces.json]
+[gw5] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc23DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBFDiffPlaces.json]
+[gw5] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBFDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0CDiffPlaces.json]
+[gw4] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_2.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide0.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_3.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas18.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas18.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverH_prefixed0.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverH_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CalltoReturn2.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CalltoReturn2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_3.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0CDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB9DiffPlaces.json]
+[gw2] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/create_opcode_initcode.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/contract_creating_tx.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE7DiffPlaces.json]
+[gw2] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/contract_creating_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/gas_usage.json]
+[gw6] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_2_Paris.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD6DiffPlaces.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc24DiffPlaces.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc24DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4FDiffPlaces.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4FDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5DDiffPlaces.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallStoreClearsOOG.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallStoreClearsOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RawCallGasAsk.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RawCallGasAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes3.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_OOGE_2.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5DDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA9DiffPlaces.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_2.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle2.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromTransaction.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToNameRegistrator0.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToNameRegistrator0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert2.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/gas_usage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contract_during_call_contexts.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore2.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contract_during_call_contexts.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contracts.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_BoundsOOG.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_BoundsOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentitiy_1.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentitiy_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Return50000_2.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contracts.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/dup.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB5DiffPlaces.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCCDiffPlaces.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCCDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEEDiffPlaces.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/dup.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/value_transfer_gas_calculation.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/value_transfer_gas_calculation.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/double_kill.json]
+[gw2] [ 82%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/double_kill.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/cover_revert.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/cover_revert.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/all_opcodes.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE5DiffPlaces.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB4DiffPlaces.json]
+[gw0] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/intrinsic.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/senderBalance.json]
+[gw0] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/senderBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/gasPriceDiffPlaces.json]
+[gw6] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/static_Call50000_sha256.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB4DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcACDiffPlaces.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/all_opcodes.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/istanbul/eip1344_chainid/chainid.json]
+[gw0] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/gasPriceDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFundsOldTypes.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/istanbul/eip1344_chainid/chainid.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/paris/security/tx_selfdestruct_balance_bug.json]
+[gw2] [ 82%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/paris/security/tx_selfdestruct_balance_bug.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/yul/yul.json]
+[gw0] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFundsOldTypes.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFunds.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/yul/yul.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/coverage/coverage.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFunds.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/baseFeeDiffPlaces.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/coverage/coverage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/constantinople/eip1014_create2/create2_return_data.json]
+[gw5] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcACDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD3DiffPlaces.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Return50000_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_emptyMem.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/baseFeeDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowGasPriceOldTypes.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+[gw0] [ 83%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowGasPriceOldTypes.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+32.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+32.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1MB1024Calldepth.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-1.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu2.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/extcodecopy_dejavu.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/extcodecopy_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32b_singleByte.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32b_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1025.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1025.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstore_dejavu.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstore_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/bufferSrcOffset.json]
+[gw5] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD3DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFEDiffPlaces.json]
+[gw5] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD4DiffPlaces.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1MB1024Calldepth.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_emptyMem.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit_from_call.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit_from_call.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLengthWrongV.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLengthWrongV.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecallcode_111_SuicideEnd.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecallcode_111_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_1.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/constantinople/eip1014_create2/create2_return_data.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/constantinople/eip1014_create2/recreate.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1_nonzeroValue.json]
+[gw2] [ 84%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/constantinople/eip1014_create2/recreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192_london.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas17.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192_london.json]
+src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas17.json]
+src/tests/integration/test_conformance.py::test_bchain[stBugs/returndatacopyPythonBug_Tue_03_48_41-1432.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeTooHigh.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideEnd.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput2.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBugs/returndatacopyPythonBug_Tue_03_48_41-1432.json]
+src/tests/integration/test_conformance.py::test_bchain[stBugs/staticcall_createfails.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBugs/staticcall_createfails.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_128.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemStartTooHigh.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_ecrec.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_128.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_80_Paris.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_80_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data_insufficient_gas.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data_insufficient_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_96.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_96.json]
+[gw5] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD4DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4BDiffPlaces.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_96.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/bufferSrcOffset.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+31.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-33.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1024.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_128.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1024.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_128.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_128.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_96.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-33.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log2_dejavu.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log2_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/oog.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_96.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus_again.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus_again.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_96.json]
+[gw5] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4BDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc49DiffPlaces.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_128.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_96.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAdd.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/oog.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1024.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAdd.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_96.json]
+[gw5] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc49DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFCDiffPlaces.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload_dejavu.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_128.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-31.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+1.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload8bitBound.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload8bitBound.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_616_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codeCopyOffset.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codeCopyOffset.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload16bitBound.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload16bitBound.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+33.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+33.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memReturn.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/sha3_dejavu.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_616_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_80.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/sha3_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+33.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+1.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1025.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g1_zero.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g1_zero.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_128.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_80.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1025.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-32.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+32.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memCopySelf.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu2.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memCopySelf.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+1.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1023.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log1_dejavu.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log1_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-31.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1023.json]
+[gw5] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFCDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1023.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-31.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-31.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractInteraction.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractInteraction.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestOverflow.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestOverflow.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallRecursiveMethods.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1023.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/callDataCopyOffset.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/callDataCopyOffset.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+32.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem33b_singleByte.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallRecursiveMethods.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStoreGasPrices.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem33b_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStoreGasPrices.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestKeywords.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-32.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-32.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestKeywords.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/SelfDestruct.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem31b_singleByte.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem31b_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem0b_singleByte.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem0b_singleByte.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/SelfDestruct.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractSuicide.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-1.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStructuresAndVariabless.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstroe8_dejavu.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstroe8_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-1.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStructuresAndVariabless.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContractsCreate4Contracts.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+33.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContractsCreate4Contracts.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/AmbiguousMethod.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+33.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/AmbiguousMethod.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallInfiniteLoop.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1025.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallInfiniteLoop.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CreateContractFromMethod.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CreateContractFromMethod.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ContractInheritance.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ContractInheritance.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ByZero.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ByZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContracts.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1025.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-31.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContracts.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallLowLevelCreatesSolidity.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+31.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallLowLevelCreatesSolidity.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestCryptographicFunctions.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+32.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestCryptographicFunctions.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestBlockAndTransactionProperties.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+32.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestBlockAndTransactionProperties.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTestsParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log3_dejavu.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log3_dejavu.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTestsParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTargetRangeLongerThanCodeTests.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-1.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-1.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTargetRangeLongerThanCodeTests.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-33.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/buffer.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DUP_Bounds.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DUP_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/POP_Bounds.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/POP_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMPI_Bounds.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMPI_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds3.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds2.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound2.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/RETURN_Bounds.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/RETURN_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_decreasing_blob_gas_costs.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_decreasing_blob_gas_costs.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_value_opcode.json]
+[gw2] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_value_opcode.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_gas_subtraction_tx.json]
+[gw2] [ 88%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_gas_subtraction_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_max_fee_per_blob_gas.json]
+[gw2] [ 88%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_max_fee_per_blob_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx_combinations.json]
+[gw2] [ 88%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx_combinations.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/tx_entry_point.json]
+[gw5] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_rip160.json]
+[gw5] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_rip160.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000.json]
+[gw6] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/static_Call50000_sha256.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_Paris.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_ecrec.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls0.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_1_nonzeroValue.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_2.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd2.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE2.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLength.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLength.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAskMoreGasOnDepth2ThenTransactionHas.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAskMoreGasOnDepth2ThenTransactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes5.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes5.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle2.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit2.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideMiddle.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_2.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_3.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcode_checkPC.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcode_checkPC.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter2.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToNonNonZeroBalance.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToEmpty_Paris.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToEmpty_Paris.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToNonNonZeroBalance.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowPUSH.json]
+[gw5] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000_2.json]
+[gw3] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowPUSH.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/buffer.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+31.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+31.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-32.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+1.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1023.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1023.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-33.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log4_dejavu.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log4_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_completeReturnValue.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_completeReturnValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_2.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_prefix0.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_prefix0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE_2.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE_2.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_makeMoney.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_makeMoney.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb1.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_2.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd2.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00.json]
+[gw3] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1PUSH.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_5.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToStaticOpCodeCheck.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToStaticOpCodeCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE2.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3Fail.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3Fail.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_0input.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_0input.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckCallCostOOG.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckCallCostOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionToEmpty2.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionToEmpty2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_1wei.json]
+[gw2] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/tx_entry_point.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/point_evaluation_precompile_gas_usage.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_1wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_0wei.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_0wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorage.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_empty000CreateinInitCode_Transaction.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_empty000CreateinInitCode_Transaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_FirstByte_loop.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_FirstByte_loop.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionCallData.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionCallData.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterMaxCodesize.json]
+[gw3] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1PUSH.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/shallowStack.json]
+[gw5] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Callcode50000.json]
+[gw6] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_Paris.json]
+[gw3] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/shallowStack.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stacksanitySWAP.json]
+[gw3] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stacksanitySWAP.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowDUP.json]
+[gw4] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd2.json]
+[gw4] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE_2.json]
+[gw4] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callChangeRevert.json]
+[gw4] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callChangeRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE.json]
+[gw3] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowDUP.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/underflowTest.json]
+[gw4] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_MaxTopic.json]
+[gw4] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE.json]
+[gw4] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeZero.json]
+[gw4] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterMaxCodesize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInit_Tr.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInit_Tr.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractRETURNBigOffset.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractRETURNBigOffset.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateEContractInInit_Tr.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateEContractInInit_Tr.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createFailResult.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createFailResult.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContract.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCode.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndataSize.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndataSize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButNonce.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSSTOREDuringInit.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSSTOREDuringInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionResults.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionResults.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createLargeResult.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createLargeResult.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024PreCalls.json]
+[gw5] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Callcode50000.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata2.json]
+[gw5] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContract_ThenCALLToNonExistentAcc.json]
+[gw5] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContract_ThenCALLToNonExistentAcc.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CodeInConstructor.json]
+[gw5] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CodeInConstructor.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromCallRefunds.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024PreCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToEmptyContract.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToEmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallEmptycontract.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallEmptycontract.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeWithHighValueAndGasOOG.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeWithHighValueAndGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallLoseGasOOG.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallLoseGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContractOOG.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContractOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInDelegateCall.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInDelegateCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCallOOG.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCallOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeReturn.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/stateRevert.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromCallRefunds.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButCode.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateAddressWarmAfterFail.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/stateRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_nonce.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_nonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepth2.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepth2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG2.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeMultipleSubCalls.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateAddressWarmAfterFail.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_RefundEF.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_RefundEF.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_1wei.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_1wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_AcreateB_BSuicide_BStore.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_AcreateB_BSuicide_BStore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata3.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithBalance.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValueToItself.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValueToItself.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmpty2.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmpty2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert2.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeMultipleSubCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOnEmptyStack.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOnEmptyStack.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCall_Paris.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCall_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopDelegateCallsDepthThenRevert.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInitOOG_Tr.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInitOOG_Tr.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonceMinus1.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopDelegateCallsDepthThenRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsThenRevert.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonceMinus1.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionRefundEF.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionRefundEF.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit.json]
+[gw5] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateResults.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsThenRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_noncestorage.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_noncestorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCreate.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCalls.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInStaticCall.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInStaticCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInInit.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_Paris.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCallsOnNonEmptyReturnData.json]
+[gw5] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateResults.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromEOARefunds.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCallsOnNonEmptyReturnData.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert2.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/costRevert.json]
+[gw5] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromEOARefunds.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_CallData.json]
+[gw5] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_CallData.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonce.json]
+[gw5] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionHighNonce.json]
+[gw5] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionHighNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValue.json]
+[gw5] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValue.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_single_tx.json]
+[gw5] [ 94%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_single_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/precompile_during_fork.json]
+[gw5] [ 94%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/precompile_during_fork.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_target_blobs_increase_from_zero.json]
+[gw5] [ 94%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_target_blobs_increase_from_zero.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx_pre_fund_tx.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/costRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/NashatyrevSuicideRevert.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/NashatyrevSuicideRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeWithBigOutputInInit.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeWithBigOutputInInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToNonNonZeroBalance.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToNonNonZeroBalance.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToEmpty_Paris.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToOneStorageKey_Paris.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToEmpty_Paris.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/reject_valid_full_blob_in_block_rlp.json]
+[gw0] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/reject_valid_full_blob_in_block_rlp.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_blob_count.json]
+[gw0] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_blob_count.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_multiple_txs.json]
+[gw0] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_multiple_txs.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_gas_cost.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_gas_cost.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_on_empty_memory.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_on_empty_memory.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_call_stack_levels.json]
+[gw5] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx_pre_fund_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_calldata_opcodes.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_call_stack_levels.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_huge_memory_expansion.json]
+[gw5] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_calldata_opcodes.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_type_tx_pre_fork.json]
+[gw5] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_type_tx_pre_fork.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx.json]
+[gw5] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/precompile_before_fork.json]
+[gw5] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/precompile_before_fork.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/fork_transition_excess_blob_gas.json]
+[gw5] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/fork_transition_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_increasing_blob_gas_costs.json]
+[gw5] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_increasing_blob_gas_costs.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_scenarios.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_huge_memory_expansion.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_memory_expansion.json]
+[gw5] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_scenarios.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_tx_contract_creation.json]
+[gw5] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_tx_contract_creation.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_above_target_change.json]
+[gw5] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_above_target_change.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_excess_blob_gas_calculation.json]
+[gw6] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_Paris.json]
+[gw7] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/21_tstoreCannotBeDosdOOO.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_expansion_cost.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_memory_expansion.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_create_stack_levels.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_create_stack_levels.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/valid_mcopy_operations.json]
+[gw5] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_excess_blob_gas_calculation.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx.json]
+[gw7] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_expansion_cost.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_copy_cost.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/valid_mcopy_operations.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_timestamps.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_timestamps.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/invalid_beacon_root_calldata_value.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/invalid_beacon_root_calldata_value.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/no_beacon_root_contract_at_transition.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/no_beacon_root_contract_at_transition.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeOOGInvalidSize.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeOOGInvalidSize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/createCodeSizeLimit.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/createCodeSizeLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeInit.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/create2CodeSizeLimit.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/create2CodeSizeLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeValid.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeValid.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcode.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/PythonRevertTestTue201814-1430.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/PythonRevertTestTue201814-1430.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeDirectCall.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeDirectCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert3_Paris.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert3_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateOOG.json]
+[gw3] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/underflowTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1DUP.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateAddressCollision.json]
+[gw7] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_copy_cost.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateAddressCollision.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert3.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover80.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover80.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_Bounds.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+[gw7] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_hash.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore.json]
+[gw7] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_hash.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGasFail.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeTooHigh.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd2.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_postfixed0.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGasFail.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGas.json]
+[gw0] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_postfixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+[gw0] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow2.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGas.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0.json]
+[gw0] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideNoStorage.json]
+[gw0] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideNoStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore.json]
+[gw3] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1DUP.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflow.json]
+[gw0] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_negative_excess_blob_gas.json]
+[gw0] [ 97%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_negative_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_post_fork_block_without_blob_fields.json]
+[gw0] [ 97%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_post_fork_block_without_blob_fields.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas.json]
+[gw0] [ 97%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_inputs.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas2.json]
+[gw5] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_opcodes.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas2.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/createInitCodeSizeLimit.json]
+[gw5] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_opcodes.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_gas_used_in_header.json]
+[gw5] [ 97%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_gas_used_in_header.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_non_multiple_excess_blob_gas.json]
+[gw5] [ 97%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_non_multiple_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/external_vectors.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/createInitCodeSizeLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/create2InitCodeSizeLimit.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/create2InitCodeSizeLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/creationTxInitCodeSizeLimit.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/creationTxInitCodeSizeLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToNonNonZeroBalance.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToNonNonZeroBalance.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity.json]
+[gw4] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGE.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Shnghai.json]
+[gw4] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call10.json]
+[gw4] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call10.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_2.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflow.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowSWAP.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowSWAP.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Byzantium.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Byzantium.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/QuadraticComplexitySolidity_CallDataCopy.json]
+[gw7] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Shnghai.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_sha256.json]
+[gw0] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_inputs.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_zero_excess_blob_gas_in_header.json]
+[gw0] [ 98%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_zero_excess_blob_gas_in_header.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_gasprice_opcode.json]
+[gw7] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_sha256.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_2.json]
+[gw0] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_gasprice_opcode.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_opcode_contexts.json]
+[gw0] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_opcode_contexts.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_Paris.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/QuadraticComplexitySolidity_CallDataCopy.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_1.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_3.json]
+[gw6] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_Paris.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd2.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_1.json]
+[gw7] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_ecrec.json]
+[gw7] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_ecrec.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call1MB1024Calldepth.json]
+[gw7] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call1MB1024Calldepth.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/call_opcode_types.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity2.json]
+[gw0] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/CALLBlake2f_MaxRounds.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreate.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stAttackTest/CrashingTransaction.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stAttackTest/CrashingTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stAttackTest/ContractCreationSpam.json]
+[gw6] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_2_Paris.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_1.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_reentrancy.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_reentrancy.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_calls.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_calls.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/gas_usage.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/gas_usage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_sstore.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_sstore.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_other_after_tstore.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_other_after_tstore.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore_is_zero.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore_is_zero.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json]
+[gw4] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_invalid_blob_index.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_invalid_blob_index.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_change.json]
+[gw4] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_change.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_block_blob_count.json]
+[gw4] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_block_blob_count.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_Paris.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stAttackTest/ContractCreationSpam.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_2_Paris.json]
+[gw6] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_2_Paris.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_2_Paris.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_works.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_works.json]
+[gw2] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/point_evaluation_precompile_gas_usage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_multiple_txs_in_block.json]
+[gw2] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_multiple_txs_in_block.json]
+[gw6] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_blob_tx_combinations.json]
+[gw6] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_blob_tx_combinations.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_pre_fork_block_with_blob_fields.json]
+[gw4] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_pre_fork_block_with_blob_fields.json]
+[gw7] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/call_opcode_types.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_normal_gas.json]
+[gw7] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_normal_gas.json]
+[gw1] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/run_until_out_of_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_call.json]
+[gw1] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_call.json]
+[gw0] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/CALLBlake2f_MaxRounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreateReturnValue.json]
+[gw0] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreateReturnValue.json]
+[gw5] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/external_vectors.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_inputs.json]
+[gw5] [100%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_inputs.json]
+
+============================== slowest durations ===============================
+147.88s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/external_vectors.json]
+70.90s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/run_until_out_of_gas.json]
+29.09s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/15_tstoreCannotBeDosd.json]
+26.24s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/CALLBlake2f_MaxRounds.json]
+25.82s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/21_tstoreCannotBeDosdOOO.json]
+25.52s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_2.json]
+23.37s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/point_evaluation_precompile_gas_usage.json]
+20.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_3.json]
+14.09s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/intrinsic.json]
+11.69s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/call_opcode_types.json]
+7.43s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_AttackwithJump.json]
+7.20s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/static_Call50000_sha256.json]
+6.88s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_Attack.json]
+6.52s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_Paris.json]
+5.80s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/tx_entry_point.json]
+5.79s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_rip160.json]
+5.63s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000.json]
+5.47s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_Paris.json]
+5.29s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_2_Paris.json]
+5.25s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_Paris.json]
+5.19s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity2.json]
+5.12s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_2_Paris.json]
+5.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_ecrec.json]
+5.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsThenRevert.json]
+4.97s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/buffer.json]
+4.96s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity.json]
+4.63s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/underflowTest.json]
+4.61s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_2.json]
+4.48s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_Paris.json]
+4.39s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/precompsEIP2929Cancun.json]
+4.34s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_Paris.json]
+4.31s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_2_Paris.json]
+4.20s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_3.json]
+4.09s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_2_Paris.json]
+4.07s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_Paris.json]
+4.02s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_2_Paris.json]
+4.02s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_2_Paris.json]
+3.54s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000_2.json]
+3.46s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Return50000_2.json]
+3.25s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/idPrecomps.json]
+2.99s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_1.json]
+2.99s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000.json]
+2.93s call src/tests/integration/test_conformance.py::test_vm[vmPerformance/performanceTester.json]
+2.73s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/gas_usage.json]
+2.67s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterMaxCodesize.json]
+2.16s call src/tests/integration/test_conformance.py::test_bchain[stAttackTest/ContractCreationSpam.json]
+2.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/constantinople/eip1014_create2/create2_return_data.json]
+1.94s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000.json]
+1.92s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/create_opcode_initcode.json]
+1.82s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Callcode50000.json]
+1.81s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/bufferSrcOffset.json]
+1.64s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_inputs.json]
+1.62s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexpTests.json]
+1.61s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpToPush.json]
+1.53s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/clearReturnBuffer.json]
+1.52s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1PUSH.json]
+1.50s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexp.json]
+1.50s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/dup.json]
+1.49s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd2.json]
+1.49s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/byzantium/eip198_modexp_precompile/modexp.json]
+1.48s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowPUSH.json]
+1.46s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_inputs.json]
+1.45s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_inputs.json]
+1.44s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCost.json]
+1.44s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1MB1024Calldepth.json]
+1.43s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/QuadraticComplexitySolidity_CallDataCopy.json]
+1.11s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/divByZero.json]
+1.11s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostBerlin.json]
+1.09s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx_pre_fund_tx.json]
+1.07s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemory.json]
+1.06s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/all_opcodes.json]
+1.04s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/Opcodes_TransactionInit.json]
+0.97s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx.json]
+0.96s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/shallowStack.json]
+0.92s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouchExactOOG_Paris.json]
+0.90s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1.json]
+0.87s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidAddr.json]
+0.87s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/variedContext.json]
+0.86s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFEDiffPlaces.json]
+0.82s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCEDiffPlaces.json]
+0.81s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEADiffPlaces.json]
+0.80s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2DDiffPlaces.json]
+0.79s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1FDiffPlaces.json]
+0.78s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/oog.json]
+0.75s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/costRevert.json]
+0.75s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD0DiffPlaces.json]
+0.75s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_sha256.json]
+0.74s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5FDiffPlaces.json]
+0.72s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4EDiffPlaces.json]
+0.72s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD5DiffPlaces.json]
+0.72s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemSeg.json]
+0.69s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAADiffPlaces.json]
+0.68s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE1DiffPlaces.json]
+0.68s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc49DiffPlaces.json]
+0.68s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4CDiffPlaces.json]
+0.68s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCADiffPlaces.json]
+0.68s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflow.json]
+0.68s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD9DiffPlaces.json]
+0.67s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD3DiffPlaces.json]
+0.67s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcACDiffPlaces.json]
+0.66s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE9DiffPlaces.json]
+0.66s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2CDiffPlaces.json]
+0.65s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE6DiffPlaces.json]
+0.64s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF7DiffPlaces.json]
+0.64s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4DDiffPlaces.json]
+0.63s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB6DiffPlaces.json]
+0.63s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE8DiffPlaces.json]
+0.62s call src/tests/integration/test_conformance.py::test_vm[vmTests/push.json]
+0.62s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2EDiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2ADiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA5DiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc24DiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFCDiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4BDiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCDDiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC7DiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA9DiffPlaces.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAEDiffPlaces.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5EDiffPlaces.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBDDiffPlaces.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLBlake2f.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD7DiffPlaces.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC5DiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC0DiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2BDiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE2DiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/diffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD4DiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEFDiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/baseFeeDiffPlaces.json]
+0.58s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC9DiffPlaces.json]
+0.58s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5CDiffPlaces.json]
+0.58s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCFDiffPlaces.json]
+0.58s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFBDiffPlaces.json]
+0.58s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0DDiffPlaces.json]
+0.57s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBEDiffPlaces.json]
+0.57s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929.json]
+0.57s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCCDiffPlaces.json]
+0.57s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC8DiffPlaces.json]
+0.57s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD2DiffPlaces.json]
+0.57s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc26DiffPlaces.json]
+0.56s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc25DiffPlaces.json]
+0.56s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDDDiffPlaces.json]
+0.55s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDADiffPlaces.json]
+0.55s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB8DiffPlaces.json]
+0.55s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB7DiffPlaces.json]
+0.55s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB2DiffPlaces.json]
+0.55s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC2DiffPlaces.json]
+0.54s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB3DiffPlaces.json]
+0.54s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD8DiffPlaces.json]
+0.54s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0FDiffPlaces.json]
+0.54s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4ADiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5DDiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC6DiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE0DiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0EDiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcABDiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC4DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF6DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/gasPriceDiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4FDiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB5DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA7DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc22DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc28DiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB0DiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidDiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA6DiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/addressOpcodes.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc27DiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEBDiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEDDiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBADiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBFDiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1EDiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDBDiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE7DiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2FDiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcECDiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDCDiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD1DiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDEDiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE5DiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2Recursive.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc29DiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA8DiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc21DiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC3DiffPlaces.json]
+0.48s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAFDiffPlaces.json]
+0.48s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB1DiffPlaces.json]
+0.48s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF8DiffPlaces.json]
+0.48s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD6DiffPlaces.json]
+0.48s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc23DiffPlaces.json]
+0.48s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCBDiffPlaces.json]
+0.47s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBCDiffPlaces.json]
+0.47s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_1.json]
+0.47s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB4DiffPlaces.json]
+0.47s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF9DiffPlaces.json]
+0.47s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAdd.json]
+0.46s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDFDiffPlaces.json]
+0.46s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/storageCosts.json]
+0.46s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpi.json]
+0.45s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/many_withdrawals.json]
+0.44s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE3DiffPlaces.json]
+0.44s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB9DiffPlaces.json]
+0.44s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_copy_cost.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcADDiffPlaces.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC1DiffPlaces.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBBDiffPlaces.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEBlake2f.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEEDiffPlaces.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE4DiffPlaces.json]
+0.41s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0CDiffPlaces.json]
+0.41s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowDUP.json]
+0.41s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_ecrec.json]
+0.41s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1DUP.json]
+0.40s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverWeirdV.json]
+0.40s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_gas_usage.json]
+0.40s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity.json]
+0.39s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity2.json]
+0.38s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/revertRetDataSize.json]
+0.37s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/contract_creating_tx.json]
+0.36s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024PreCalls.json]
+0.34s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd.json]
+0.34s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/withdrawing_to_precompiles.json]
+0.33s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAddTrunc.json]
+0.33s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_blob_tx_combinations.json]
+0.33s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromCallRefunds.json]
+0.32s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/blake2B.json]
+0.31s call src/tests/integration/test_conformance.py::test_vm[vmTests/calldatasize.json]
+0.30s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGFromCallRefunds.json]
+0.29s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_memory_expansion.json]
+0.29s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pairingTest.json]
+0.29s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/subcall.json]
+0.29s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageOK.json]
+0.28s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateResults.json]
+0.28s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateAddressWarmAfterFail.json]
+0.28s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_excess_blob_gas_calculation.json]
+0.28s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeMultipleSubCalls.json]
+0.28s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sdiv.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes5.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageReset.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_pre_existing_contract_to_new_contract.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/operationDiffGas.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0to0.json]
+0.26s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoY.json]
+0.26s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate.json]
+0.26s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionToEmpty2.json]
+0.26s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/multi_block_beacon_root_timestamp_calls.json]
+0.24s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mulmod.json]
+0.24s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/addmod.json]
+0.23s call src/tests/integration/test_conformance.py::test_vm[vmTests/dup.json]
+0.23s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls2.json]
+0.23s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter2.json]
+0.23s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024PreCalls.json]
+0.23s call src/tests/integration/test_conformance.py::test_vm[vmTests/swap.json]
+0.23s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceDelegatecall.json]
+0.23s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/tooLongReturnDataCopy.json]
+0.23s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0toX.json]
+0.23s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_reentrancy.json]
+0.22s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0.json]
+0.22s call src/tests/integration/test_conformance.py::test_bchain[stShift/shiftCombinations.json]
+0.21s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXto0.json]
+0.21s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoX.json]
+0.21s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/reentrancy_selfdestruct_revert.json]
+0.21s call src/tests/integration/test_conformance.py::test_vm[vmTests/sha3.json]
+0.20s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_gas_cost.json]
+0.20s call src/tests/integration/test_conformance.py::test_vm[vmLogTest/log4.json]
+0.20s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYto0.json]
+0.20s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toX.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_expansion_cost.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1023.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stExample/rangesExample.json]
+0.19s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jump.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toY.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1025.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Suicide.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromEOARefunds.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contracts.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoY.json]
+0.18s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/signextend.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toX.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1024.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_reentrancy.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoZ.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0toX.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0to0.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/stateRevert.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toXto0.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_timestamps.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate1559.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_gasLeft.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoY.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoY.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoX.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_128.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1025.json]
+0.17s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/exp.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoX.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1025.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1023.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashPrecompiles.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_96.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1024.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_128.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/valid_mcopy_operations.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_128.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackSizeLargerThan1024.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1023.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1024.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoX.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx_increased_nonce.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_96.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferAsk.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_191.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_96.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/measureGas.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_128.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_35000.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_96.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_rip160.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount1559.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_128.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_1.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_0.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_96.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_96.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel2.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[stShift/shiftSignedCombinations.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929OOG.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createLargeResult.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_3.json]
+0.14s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mul.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter2.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_40.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter2.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_huge_memory_expansion.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_3.json]
+0.13s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/not.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes3.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/transactionCosts.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_2.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/multiple_withdrawals_same_address.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_128.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_changeFromExternalCallInInitCode.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_call_out_of_gas.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostExp.json]
+0.12s call src/tests/integration/test_conformance.py::test_vm[vmTests/envInfo.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest458.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_2.json]
+0.11s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/div.json]
+0.11s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loopsConditionals.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_28000_128.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_128.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024OOG.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_96.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest511.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_integerBoundaries.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_0input.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/block504980.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/yul/yul.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createFailResult.json]
+0.10s call src/tests/integration/test_conformance.py::test_vm[vmTests/calldatacopy.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls3.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_25000_192.json]
+0.10s call src/tests/integration/test_conformance.py::test_vm[vmLogTest/log1.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/coverage/coverage.json]
+0.10s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/byte.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeReturn.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_25000_128.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_Gas2999.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/creationTxInitCodeSizeLimit.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_128.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extcodehashEmpty_Paris.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_64.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest150.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_128.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_128.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_96.json]
+0.09s call src/tests/integration/test_conformance.py::test_vm[vmLogTest/log3.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore2.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/valCausesOOF.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes2.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call1MB1024Calldepth.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_96.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest48.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallInfiniteLoop.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/value_transfer_gas_calculation.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_80.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_opcode_contexts.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore2.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_80.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFundsOldTypes.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_OOGE.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_stack_overflow.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_calls.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/contract_creation.json]
+0.08s call src/tests/integration/test_conformance.py::test_vm[vmLogTest/log2.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromCalledContract.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest639.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2checkFieldsInInitcode.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_decreasing_blob_gas_costs.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Shnghai.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMBefore.json]
+0.08s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/xor.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/eoaEmptyParis.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929-ff.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexpRandomInput.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_616_28000_96.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromTransaction.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callChangeRevert.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest467.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_192.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_new_contract_to_pre_existing_contract.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert2.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_128.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_96.json]
+0.07s call src/tests/integration/test_conformance.py::test_vm[vmLogTest/log0.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_64.json]
+0.07s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/twoOps.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_128.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/tx_to_beacon_root_contract.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_match_1.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_equal_to_timestamp.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contract_during_call_contexts.json]
+0.07s call src/tests/integration/test_conformance.py::test_vm[vmTests/random.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_4.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert3.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_3.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate2.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromContractInitialization.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_96.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_128.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCalls.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_64.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_scenarios.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_128.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert2.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_128.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_oog.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_96.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_80.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTest.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2InitCodes.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_96.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollisionBerlin.json]
+0.07s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mod.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest306.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_call.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCallsOnNonEmptyReturnData.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_96.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_64.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallRecursiveMethods.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_2.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_21000_192.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOG.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/smod.json]
+0.06s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/msize.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1024.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter2.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_calldata_opcodes.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_80_Paris.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024BalanceTooLow.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest636.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallOOG.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024BalanceTooLow.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallRecursiveBombPreCall.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert3.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/istanbul/eip1344_chainid/chainid.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1023.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/zero_amount.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallRecursiveBombPreCall.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow2.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus_again.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_on_empty_memory.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_5.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOGBerlin.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/OOGinReturn.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_points_with_one_g2_zero.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls1.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log_Caller.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest554.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2callPrecompiles.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_192.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover_Overflow.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_1.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_curve_order.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024BalanceTooLow.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_0.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_193.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_25000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGas.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_curve_order.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore2.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_192.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_not_in_subgroup.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateOOG.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateAddressCollision.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stBugs/returndatacopyPythonBug_Tue_03_48_41-1432.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_21000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_0.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_0.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_one.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024OOG.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_25000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_192.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollision.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_192.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024OOG.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_vm[vmTests/blockInfo.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_fail_1.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_25000_80_Paris.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_selfdestructing_call.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_increasing_blob_gas_costs.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsThenRevert.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_80_Paris.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest159.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_80.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_192.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_field_modulus.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/RETURN_Bounds.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_1.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_80.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data_insufficient_gas.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ByZero.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g1_zero.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE_2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_192.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstoreGas.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_storage_Paris.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_20500.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromTransaction.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_hash.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_1.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/multiSelfdestruct.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_fail.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/calldata_lengths.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero_and_g1_invalid.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallcodeLoseGasOOG.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromContractInitialization.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_Paris.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_80.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcode_checkPC.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_80.json]
+0.05s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/add.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore2.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/or.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest158.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/not.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_25000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_noncestorage.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_64.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_80.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/return.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_192.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_nonce.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/SelfDestruct.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallcodeLoseGasOOG.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DUP_Bounds.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/failed_tx_xcf416c53_Paris.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sub.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/codecopy.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_40.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest178.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_one.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_25000.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromCalledContract.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostJump.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE_2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/undefinedOpcodeFirstByte.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_3.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callBasic.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RawCallGasAsk.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_call_stack_levels.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDynamicArgument.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_insufficient_gas.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionNonZeroNonce.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_1.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFunds.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest154.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE2.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/and.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/newly_created_contract.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromTransaction.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stEIP3607/initCollidingWithNonEmptyAccount.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024OOG.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromTransaction.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore2.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmTests/calldataload.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls0.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionCallData.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/modexp_modsize0_returndatasize.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToSuicideThenExtcodehash.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_tx.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_value_opcode.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest650.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_1102.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_22000.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmpty2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_96_Paris.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/berlin/eip2930_access_list/access_list.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToNonExistent.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionBalance.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromCalledContract.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldatacopyNonConst.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionOOG.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT01.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasContractCreation.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromContractInitialization.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreateReturnValue.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromCalledContract.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromContractInitialization.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/manualCreate.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_gasprice_opcode.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionParis.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_BoundsOOG.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stExample/labelsExample.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverShortBuff.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButCode.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGasFail.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256Of256.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractRETURNBigOffset.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes4.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_in_same_tx_with_revert.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldataloadNonConst.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/lt.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide1.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceCallTypes.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButNonce.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/slt.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_FirstByte_loop.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/gt.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_init_Paris.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTouch_Paris.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/sgt.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest205.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstruction.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest24.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls3.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmTests/suicide.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_not_created_in_same_tx_with_revert.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_3.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_FirstByte_loop.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/gas_usage.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01_OOGE.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstruction.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAskMoreGasOnDepth2ThenTransactionHas.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_5.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024OOG.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcode.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGasPartial.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasPrefundedContractCreation.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_256.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb1.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/sstore_sload.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_OOGE_2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest301.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls1.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest267.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckCallCostOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE2.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore8.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_deploy.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionStorageParis.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide0.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/POP_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mload.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideNoStorage.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeValid.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionNonce.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest137.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb1.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2noCash.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stBugs/staticcall_createfails.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide1.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowGasLimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/create2InitCodeSizeLimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMPI_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/createInitCodeSizeLimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopDelegateCallsDepthThenRevert.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_Gas2999.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertOpcodeCalls.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/iszero.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedRevert.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionDataCosts652.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_contract.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/balance_within_block.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverS_prefixed0.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_calls.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds4.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/eq.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stacksanitySWAP.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorZeorSizeMemExpansion.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_create_stack_levels.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertRemoteSubCallStorageOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashMaxCodeSize.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_oog_after_deeper.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowSWAP.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContract.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndGasOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_257.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/gas.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CodeInConstructor.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_postfix0.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/self_destructing_account.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode2SelfCall.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/create2CodeSizeLimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixedf0.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createFailBalanceTooLow.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/createCodeSizeLimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest6.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stAttackTest/CrashingTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromCalledContract.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest72.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionResults.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32b_singleByte.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideStorage.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideTwice.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromContractInitialization.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest298.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest371.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_0.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial_zero_read.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest143.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2a.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInInit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorZeroMemExpanion.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call10.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_out_of_gas.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/divNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOGBonusGas.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2SmartInitCode.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/subNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log1NonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest645.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/gtNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExisContractWithVTransferNEMoney.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepth2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/byteNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest66.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pc.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndOOGatTxLevel.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log3_dejavu.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/delegatecallNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest176.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallLoseGasOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest648.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_create.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log3NonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletAddOwnerRemovePendingTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_NoGas.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/large_amount.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callcodeNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest341.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTestsParis.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl10.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstore8NonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractAndCallItOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_invalid_blob_index.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSuicide50procentCap.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_1.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/balanceNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCallFailed.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransfer.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashInInitCode.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeCreate.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest36.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideTwice.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulmodNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideEnd.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesSuccess.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^254_254.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/signextNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageRevertedOOGInInit2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/codecopyNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletRemoveOwnerRemovePendingTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteUnderDailyLimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/createNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_WithValue.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCode.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/suicideNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConfirm.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/eqNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/xorNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest169.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sdivNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCreate.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log2NonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addmodNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memCopySelf.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sha3NonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/orNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/andNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/iszeroNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitMultiOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/smodNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/ltNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/modNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest322.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/expNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sgtNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mloadNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log0NonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeRequirementRemovePendingTransaction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sloadNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstoreNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest119.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/notNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sstoreNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxsNotEnoughGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpiNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodecopyNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sltNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodesizeNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest163.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContracts.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInitOOG_Tr.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata.json]
+0.01s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loop_stacklimit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractInteraction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/returnNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToEmptyContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Byzantium.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideNoStorage.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest356.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest15.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionPartial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest20.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/accessListExample.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest359.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ContractInheritance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest379.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_opcodes.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestOverflow.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest210.json]
+0.01s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/fib.json]
+0.01s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pop.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemoryAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeDirectCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/FillStack.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest211.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSSTORE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2a.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas17.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SLOAD_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionHighNonce.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitOOGforCREATE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToReturn1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeOOGInvalidSize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeWithBigOutputInInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_0input.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_ZeroVCallSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGasAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKill.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_gas3000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SSTORE_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3Fail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecallcode_111_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest345.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestKeywords.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_completeReturnValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2a.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_empty000CreateinInitCode_Transaction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_Msize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageReverted.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwnerNoArgument.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_mySelf.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageReverted.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest107.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallLoseGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem0b_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem33b_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/extcodecopy_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimitNoData.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest476.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest194.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLength.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest124.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest266.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest12.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest326.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestCryptographicFunctions.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicideOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest350.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/callDataCopyOffset.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ValueOverflowParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStoreGasPrices.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionPartial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload8bitBound.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreGasOnCreate.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest231.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/makeMoney.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/deploymentError.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/transient_storage_unset_values.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest320.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_fromNotOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwnerAddMyself.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/tx_e1c174e2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_makeMoney.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest217.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyMemoryGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_toIsOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log2_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundMax.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_prefix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_248.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillToWallet.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest243.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeOwnerRemovePendingTransaction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/sha3_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstore_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLength.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAskMoreGasOnDepth2ThenTransactionHasWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest404.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest380.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransferMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToStaticOpCodeCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStructuresAndVariabless.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallLowLevelCreatesSolidity.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeSizeGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/sec80.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CreateContractFromMethod.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefault.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log1_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstroe8_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRevokeNothing.json]
+0.01s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/arith.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest118.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillNotByOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192_london.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest96.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/selfdestructEIP2929.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/solidityExample.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest315.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest378.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigLeft.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest138.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover80.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcode_checkPC.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverS_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerFalse.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallRecursiveContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestBlockAndTransactionProperties.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest185.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContractsCreate4Contracts.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/10_revertUndoesStoreAfterReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest259.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest304.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_singleSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest369.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToItself.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundFF.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest179.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_0wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_overlappingInputOutput.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTargetRangeLongerThanCodeTests.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest279.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codeCopyOffset.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemoryAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_ownerIsNotOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverR_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest332.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest199.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest191.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest129.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_gas3000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest409.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest316.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest67.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest283.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertDepth2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund600.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLengthWrongV.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceUpdate.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest337.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit_from_call.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest156.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest363.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest219.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_OOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest282.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log4_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem31b_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest207.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAfterTransition.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest173.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest41.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest134.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/DelegateCallOnEIP.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest579.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest145.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest242.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxs.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallAndOOGatTxLevel.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverH_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerTrue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest147.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest82.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest73.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitResetSpentToday.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallBeforeTransition.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallStoreClearsOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwnerByNonOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest84.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/subcallReturnMoreThenExpected.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest248.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest576.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest206.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest245.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_postfix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/AmbiguousMethod.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4_gas719.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwnerNew.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas18.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_1wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/NewGasPriceForCodes.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/PointAtInfinityECRecover.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest221.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest318.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest131.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_0input.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAtTransition.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest609.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_NoCollision.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverR_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionCorrect.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload16bitBound.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_outsize_then_create_successful_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest261.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest202.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_postfixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest81.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest348.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest18.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest88.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverUnrecoverableKey.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest385.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest361.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorage.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest237.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_completeReturnValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToNonZeroBalance_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToEmpty.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest354.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherPostDeath.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest192.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest303.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest148.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_OOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest83.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest574.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64e0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistrator0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemoryAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_gasprice.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest367.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode2SelfCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest62.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest103.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest365.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest583.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/typeTwoBerlin.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_bug.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToNotExistingContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAskMoreGasOnDepth2ThenTransactionHas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest102.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest53.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasPriceParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest312.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest187.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/extcodecopy.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_ecrec_success_empty_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CreateAndGasInsideCreateWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallBasic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallOOGinCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest338.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest612.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest155.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest448.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest352.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigRight.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest117.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/Call10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_NoGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToNonZeroBalance_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/DelegateCallOnEIPWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest30.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest525.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest464.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest586.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallSenderCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest125.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest230.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest335.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest222.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest336.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest162.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest200.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAt.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/NewGasPriceForCodesWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest280.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigRight.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64m1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToNameRegistrator0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest190.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest263.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/testRandomTest.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/indexesOmitExample.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest547.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert_in_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest212.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest642.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CreateAndGasInsideCreate.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallValueCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/PostToReturn1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAndCallcodeConsumeMoreGasThenTransactionHasWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccountCancun.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest13.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest278.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideNotExistingAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest498.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorMemOOGAndInsufficientBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_callcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateAutoSuicideContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevel2WithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest215.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractAndCallItOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toEpmtyParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64p1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest227.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas17.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest418.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest23.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest520.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest426.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_staticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDELEGATECALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest80.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest305.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2Cancun.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/add11_yml.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/codeCopyZero_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest460.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest313.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContractOOGInitCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_bigger.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest271.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest184.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_staticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideAddress.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest323.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallOpCodeCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest290.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/mergeTest.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemoryAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueOOGinCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverV_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callWithHighValueAndGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/PythonRevertTestTue201814-1430.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest225.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partialFail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/yulExample.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOOG_MemExpansionOOV.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideOrigin.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest244.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest611.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest602.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToExistingContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest78.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest273.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest196.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest115.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/add11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest45.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createWithInvalidOpcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest643.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawBalanceGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverS_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest236.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest405.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_staticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPreStore1NotEnoughGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreate.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_PostToReturn1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistrator.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_overrun.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_selfdestruct.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest296.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeOutput3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest299.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest302.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1Cancun.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_completeReturnValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest307.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/14_revertAfterNestedStaticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest488.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest436.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest208.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest110.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToEmpty_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest69.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/StaticcallForPrecompilesIssue683.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest360.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CreateHashCollision.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefaultWithOutValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverR_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_6_inputShorterThanOutput.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover80.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest504.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest149.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest281.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractInInitCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest180.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest19.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest532.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToOneStorageKey_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest252.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMemExpansion.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractAndCallIt_0wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_delegatecall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToEmpty_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_callcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest633.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountStaticCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_MaxTopic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest139.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigLeft.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToOneStorageKey_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValueAndGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest585.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_revert_in_staticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest497.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/TestNameRegistrator.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest537.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/vitalikTransactionTestParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest238.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partialFail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest257.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_Caller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/eip1559.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest644.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigRight.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/invalidTr.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3Fail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/create_callprecompile_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest59.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest383.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverH_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackUnderflow.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateSuicideInInitcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest384.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stChainId/chainIdGasCost.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest249.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest112.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest111.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4_gas719.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicideCancun.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest333.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest465.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest167.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_after_store.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonce.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest471.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest596.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest340.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest599.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest308.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest399.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_call.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLengthWrongV.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/basefeeExample.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/NashatyrevSuicideRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest414.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest142.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest589.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_create_successful_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest366.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest556.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/deleagateCallAfterValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_AcreateB_BSuicide_BStore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInStaticCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest480.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toNonExistent.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest524.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest386.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest501.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_smaller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest475.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest503.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/callToEmptyThenCallErrorParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_0_0_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest439.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_overlappingInputOutput.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest85.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest421.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest472.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest477.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_MaxTopic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest446.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_delegatecall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelfInInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest92.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest526.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest376.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_PC.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_callcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherToMe.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest635.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest580.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallTheContractToCreateEmptyContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest445.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts2_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashChangedAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest605.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/createEmptyThenExtcodehash.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCaller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest402.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContractWithValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest491.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaTransactionCost53000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest578.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest47.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest451.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevelWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest649.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest246.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest387.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_staticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest415.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest389.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest607.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_OneVCallSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_ExampleContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50percentCap.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest494.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest555.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest571.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest358.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest601.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToReturn1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/senderBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest188.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest443.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest424.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest506.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest620.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/StackUnderFlowContractCreation.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_call_value_fail_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest559.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentitiy_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_ZeroVCallSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest462.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest334.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest398.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest627.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest412.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/delegatecall09Undefined.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partialFail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest584.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest9.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXP_Empty.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest513.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_CallData.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToEmptyContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest616.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest357.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest450.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest550.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest75.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest553.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_callsItself.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest429.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest587.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest43.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_then_create2_successful_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSTATICCALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountRecheckInOuterCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest438.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/dynamicAccountOverwriteEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest543.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest309.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/balanceInputAddressTooBig.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest482.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest527.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest630.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest351.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashAccountWithoutCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest533.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callerAccountBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallA.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest512.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest368.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateStopInInitcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest505.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest560.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhashOutOfRange.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest509.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest588.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds6.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest396.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest381.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl_2^255-1_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest483.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest541.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest442.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest521.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContract_ThenCALLToNonExistentAcc.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest393.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_1wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest461.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest440.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNonExistingAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest496.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest569.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stChainId/chainId.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest625.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest641.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest581.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar00.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhBounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest406.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallEmptycontract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest484.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest51.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest74.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest410.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest435.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest395.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest582.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest401.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest565.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALLCODE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_Caller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest474.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest425.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest487.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest618.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest563.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest493.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_prefix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest629.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest454.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_MaxTopic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest397.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest430.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_254.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest452.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest500.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest519.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest288.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest433.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest544.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest189.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest416.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNewAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest615.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest478.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest437.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest407.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest449.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest564.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_multimpleSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest286.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest408.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest567.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/eip2315NotRemoved.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest621.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest548.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest275.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest575.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest265.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest545.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest469.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest626.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest517.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest384.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeCopyBounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest518.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest499.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_transaction_begin.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest220.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest562.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest552.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest447.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest470.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest481.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest610.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest514.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest647.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest510.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest269.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest444.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest523.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest597.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest171.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest592.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest535.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest232.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest413.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest603.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest646.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest457.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest528.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest507.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInit_Tr.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_MaxTopic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndSendMoneyToItselfEtherDestroyed.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_Caller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest455.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest640.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest608.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest542.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest411.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest422.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest638.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert2_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest604.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest60.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest485.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToOneStorageKey_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_RefundEF.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest346.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest600.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest516.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest321.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest98.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest473.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/19_oogUndoesTransientStore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest534.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest536.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest216.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest637.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest349.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_getEtherBack.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceGasCost.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest546.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatasize_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest122.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_Caller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest539.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest214.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest428.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest489.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValueToItself.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest495.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3Fail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest133.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest362.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest388.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest268.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest327.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest177.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInDelegateCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest14.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CalltoReturn2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeInCreateReturnsCreate2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateTransactionSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest52.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest502.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateEContractInInit_Tr.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest531.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest466.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest420.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest29.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContractOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest64.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest353.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest566.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_0_0_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest456.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCallOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_CALL_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest558.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorOutOfGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_0_256-1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/SstoreCallToSelfSubRefundBelowZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_257.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest419.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCallOOG_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/17_tstoreGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest311.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest121.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSSTOREDuringInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest572.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest146.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas17.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_afterFailing_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest198.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest25.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest364.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeWithHighValueAndGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_PC.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueOOGinCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/logInOOG_Call.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_MaxTopic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/currentAccountBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_NoGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest37.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndataSize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToNonZeroBalance_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertInCreateInInitCreate2Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest417.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest508.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_revert_in_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToDelCallOpCodeCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest105.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest577.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallLoseGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert3_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest632.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToEmpty_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_outsize_then_create2_successful_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest144.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCreateInInit_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelf.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0101.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest297.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorValueTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverInvalidSignature.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverH_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-ff.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest310.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/StackDepthLimitSEC.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_changeNonZeroStorage.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_notEnoughGasInCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest624.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest264.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest285.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_gas3000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCreateReturns.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/ExecuteCallThatAskMoreGasThenTransactionHasWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest157.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas18.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest55.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest347.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore_is_zero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorendowmentTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest294.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest628.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4_gas99.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest197.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest114.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest209.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceEqualsBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest116.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest355.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/OverflowGasRequire2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest247.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest343.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest164.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest135.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverV_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest77.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest17.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToAddressh160minusOne.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_prefix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesStopAfterSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest54.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest28.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/no_beacon_root_contract_at_transition.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeTo0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest228.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefound.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest250.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover80.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest372.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest27.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionRefundEF.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimitSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CalltoReturn2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest175.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest295.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest95.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest166.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest370.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonceMinus1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCallCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partialFail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE_valueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest104.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest153.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest126.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/invalid_beacon_root_calldata_value.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_postfixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest342.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest42.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_failing_call.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest339.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasLimit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest26.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest226.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_NoOOG_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest260.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest120.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest39.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest97.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest22.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4_gas99.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCall_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/EmptyTransaction3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest293.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest172.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest300.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest130.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToEmpty_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest106.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_other_after_tstore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest58.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest89.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest195.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToOneStorageKey_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest63.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_Gas2999.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest90.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_sstore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest161.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest292.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToNonZeroBalance_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest276.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest201.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistrator0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest291.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyOOG_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest329.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_send_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest183.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractNoCash.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest16.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest57.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigLeft.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest287.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas18.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest270.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest251.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest174.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOGBonusGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4_gas99.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOnEmptyStack.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/cover_revert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4_gas719.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest204.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/FailedCreateRevertsDeletionParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest382.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest87.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest49.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallCodeOpCodeCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/OverflowGasMakeMoney.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest274.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest325.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest254.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceMinus1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_delegatecall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest151.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_postfixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateRandomInitCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/push32withoutByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_overlappingInputOutput.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndataSize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_works.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_calls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_postfix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/sha3_deja.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_callcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest233.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndOOGatTxLevel.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_too_big_transfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSLoadTest/sloadGasCost.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_SUICIDE_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest108.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_delegatecall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/gasPrice0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_big_sum.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_afterFailing_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonce.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeEmptycontract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_2.json]
+
+(5712 durations < 0.005s hidden. Use -vv to show these durations.)
+================ 2720 passed, 109 skipped in 210.26s (0:03:30) =================
+make[1]: Leaving directory '/home/zhaoji/evm-semantics/kevm-pyk'
diff --git a/test-conformance-summary.txt b/test-conformance-summary.txt
new file mode 100644
index 0000000000..9ab6145c9d
--- /dev/null
+++ b/test-conformance-summary.txt
@@ -0,0 +1,8413 @@
+poetry -C ./kevm-pyk env use --no-cache /nix/store/7hnr99nxrd2aw6lghybqdmkckq60j6l9-python3-3.11.9/bin/python3
+Using virtualenv: /home/zhaoji/.cache/pypoetry/virtualenvs/kevm-pyk-9eA2lNH8-py3.11
+poetry -C ./kevm-pyk install
+Installing dependencies from lock file
+
+No dependencies to install or update
+
+Installing the current project: kevm-pyk (1.0.678)
+make -C kevm-pyk/ test-integration PYTEST_ARGS+="-k test_conformance.py"
+make[1]: Entering directory '/home/zhaoji/evm-semantics/kevm-pyk'
+poetry install
+Installing dependencies from lock file
+
+No dependencies to install or update
+
+Installing the current project: kevm-pyk (1.0.678)
+poetry run pytest src/tests/integration --verbose --durations=0 --dist=worksteal --maxfail=1 --numprocesses=8 -k test_conformance.py
+============================= test session starts ==============================
+platform linux -- Python 3.11.9, pytest-7.4.4, pluggy-1.5.0 -- /home/zhaoji/.cache/pypoetry/virtualenvs/kevm-pyk-9eA2lNH8-py3.11/bin/python
+cachedir: .pytest_cache
+hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase(PosixPath('/home/zhaoji/evm-semantics/kevm-pyk/.hypothesis/examples'))
+rootdir: /home/zhaoji/evm-semantics/kevm-pyk
+plugins: mock-3.14.0, kframework-7.1.222, cov-6.0.0, hypothesis-6.129.1, xdist-3.6.1, timeout-2.3.1
+created: 8/8 workers
+8 workers [2829 items]
+
+scheduling tests via WorkStealingScheduling
+
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/iszero.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_Gas2999.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest264.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/modexp_modsize0_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC1DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes4.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest264.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest177.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMAfter.json]
+[gw7] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_Gas2999.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_22000.json]
+[gw1] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2a.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest177.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest75.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts1.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts1.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest75.json]
+[gw0] [ 0%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/iszero.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/eq.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest293.json]
+[gw1] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2a.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return.json]
+[gw4] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes4.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest293.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest26.json]
+[gw5] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/modexp_modsize0_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_delegatecall.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_ABCB_RECURSIVE.json]
+[gw1] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest26.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest195.json]
+[gw7] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_22000.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_overlappingInputOutput.json]
+[gw5] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_delegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_failing_call.json]
+[gw0] [ 0%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/eq.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/lt.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest195.json]
+[gw7] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_overlappingInputOutput.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_postfix0.json]
+[gw5] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_failing_call.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_callcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest370.json]
+[gw4] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle2.json]
+[gw3] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest370.json]
+[gw7] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_postfix0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_5.json]
+[gw1] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/FillStack.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest382.json]
+[gw2] [ 0%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100.json]
+[gw4] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle2.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_callcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToEmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallCodeOpCodeCheck.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest382.json]
+[gw7] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest164.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonce.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_create.json]
+[gw1] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/FillStack.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds.json]
+[gw4] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallCodeOpCodeCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_2.json]
+[gw7] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonce.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest164.json]
+[gw0] [ 1%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/lt.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds3.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/not.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToEmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest254.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideMiddle.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_big_sum.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest254.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest295.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGE.json]
+[gw1] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2a.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_big_sum.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_following_successful_create.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest295.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest151.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_OOGE.json]
+[gw7] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageReverted.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_afterFailing_create.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_OOGE.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest151.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest384.json]
+[gw4] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10.json]
+[gw1] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2a.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SLOAD_Bounds.json]
+[gw5] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_afterFailing_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_successful_create.json]
+[gw7] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageReverted.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceMinus1.json]
+[gw2] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeEmptycontract.json]
+[gw3] [ 1%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest384.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest121.json]
+[gw5] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_too_big_transfer.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeEmptycontract.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest121.json]
+[gw1] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SLOAD_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest120.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds4.json]
+[gw7] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceMinus1.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2callPrecompiles.json]
+[gw5] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_too_big_transfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_delegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101.json]
+[gw0] [ 2%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/not.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/byte.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest120.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest89.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMBefore.json]
+[gw5] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_delegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/clearReturnBuffer.json]
+[gw4] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput1.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest89.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest260.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01.json]
+[gw4] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+[gw1] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds4.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds3.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest260.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest54.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_ABCB_RECURSIVE.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest54.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest287.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_ABCB_RECURSIVE.json]
+[gw4] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideMiddle.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest287.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest347.json]
+[gw1] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2.json]
+[gw2] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest347.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest274.json]
+[gw4] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter2.json]
+[gw7] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2callPrecompiles.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCode.json]
+[gw1] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2.json]
+[gw3] [ 2%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest274.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest63.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds3.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMAfter.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest63.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest204.json]
+[gw7] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts2.json]
+[gw1] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds3.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest204.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest130.json]
+[gw7] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollision.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest130.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest291.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest291.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest329.json]
+[gw1] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds3.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest329.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest97.json]
+[gw0] [ 3%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/byte.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/and.json]
+[gw1] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest97.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest183.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest183.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest339.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideEnd.json]
+[gw1] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds3.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest339.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest104.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGE.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest104.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest51.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMAfter.json]
+[gw7] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollision.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndataSize.json]
+[gw3] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest51.json]
+[gw0] [ 3%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/and.json]
+[gw2] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/xor.json]
+[gw7] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndataSize.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest27.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1023.json]
+[gw1] [ 3%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SSTORE_Bounds.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest27.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest28.json]
+[gw1] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SSTORE_Bounds.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest28.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds2.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGE.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest33.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest226.json]
+[gw1] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds2.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest226.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest209.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMBefore.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_SuicideEnd.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest209.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest372.json]
+[gw1] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds2.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return2.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest372.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest247.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideEnd.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest247.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest108.json]
+[gw1] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds2.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideEnd.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest108.json]
+[gw4] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest300.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest300.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest144.json]
+[gw7] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1023.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedRevert.json]
+[gw1] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds3.json]
+[gw0] [ 4%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/xor.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/gt.json]
+[gw2] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMBefore.json]
+[gw3] [ 4%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest144.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest116.json]
+[gw4] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_prefixed0.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest116.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest58.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_ABCB_RECURSIVE.json]
+[gw7] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed2.json]
+[gw4] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100.json]
+[gw1] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds3.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest58.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest343.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2a.json]
+[gw4] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest343.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest201.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_ABCB_RECURSIVE.json]
+[gw0] [ 5%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/gt.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/sgt.json]
+[gw7] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceDelegatecall.json]
+[gw4] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest201.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest233.json]
+[gw4] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw1] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2a.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMBefore.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest233.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest270.json]
+[gw4] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls2.json]
+[gw1] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_Msize.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest270.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest87.json]
+[gw0] [ 5%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/sgt.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/or.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest87.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest325.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideEnd.json]
+[gw1] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_Msize.json]
+src/tests/integration/test_conformance.py::test_bchain[stSLoadTest/sloadGasCost.json]
+[gw2] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideMiddle.json]
+[gw3] [ 5%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest325.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest342.json]
+[gw1] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSLoadTest/sloadGasCost.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstoreGas.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_ABCB_RECURSIVE.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest342.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest161.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest161.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest250.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest250.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExisContractWithVTransferNEMoney.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest174.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest174.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest106.json]
+[gw0] [ 6%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/or.json]
+[gw6] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC1DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/slt.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE4DiffPlaces.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExisContractWithVTransferNEMoney.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_ABCB_RECURSIVE.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest106.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest228.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest228.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest158.json]
+[gw1] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstoreGas.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoX.json]
+[gw0] [ 6%] PASSED src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/slt.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jump.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideMiddle.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_ABCB_RECURSIVE.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcode_checkPC.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest158.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest77.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest77.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest172.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest172.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest292.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest292.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest31.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest31.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest16.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcode_checkPC.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest16.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest49.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMAfter.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest49.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest251.json]
+[gw3] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest251.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest90.json]
+[gw2] [ 6%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMAfter.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideMiddle.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest90.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest22.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest22.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest175.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGE.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest175.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest37.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest37.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest157.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMAfter.json]
+[gw7] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceDelegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest157.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest42.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_SuicideEnd.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest42.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest276.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGE.json]
+[gw3] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest276.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromContractInitialization.json]
+[gw7] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/deploymentError.json]
+[gw7] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_outsize_then_create2_successful_then_returndatasize.json]
+[gw1] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/deploymentError.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/tx_e1c174e2.json]
+[gw7] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_outsize_then_create2_successful_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGFromCallRefunds.json]
+[gw0] [ 7%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jump.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/tx_e1c174e2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/OverflowGasMakeMoney.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/OverflowGasMakeMoney.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/push32withoutByte.json]
+[gw4] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndOOGatTxLevel.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/push32withoutByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/FailedCreateRevertsDeletionParis.json]
+[gw4] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndOOGatTxLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_SUICIDE_OOGRevert.json]
+[gw2] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/FailedCreateRevertsDeletionParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/gasPrice0.json]
+[gw4] [ 7%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_SUICIDE_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_2.json]
+[gw2] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/gasPrice0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_Attack.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb2.json]
+[gw0] [ 8%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loop_stacklimit.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromContractInitialization.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromCalledContract.json]
+[gw0] [ 8%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loop_stacklimit.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pop.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_2.json]
+[gw0] [ 8%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pop.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpToPush.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromCalledContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromContractInitialization.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromContractInitialization.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromCalledContract.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_3.json]
+[gw1] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/SstoreCallToSelfSubRefundBelowZero.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromCalledContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromCalledContract.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd2.json]
+[gw1] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/SstoreCallToSelfSubRefundBelowZero.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore2.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromCalledContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromContractInitialization.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromContractInitialization.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromTransaction.json]
+[gw6] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE4DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC3DiffPlaces.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromContractInitialization.json]
+[gw7] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGFromCallRefunds.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_FirstByte_loop.json]
+[gw3] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromContractInitialization.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromCalledContract.json]
+[gw7] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_FirstByte_loop.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert2.json]
+[gw4] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore2.json]
+[gw7] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionBalance.json]
+[gw1] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toX.json]
+[gw7] [ 8%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_then_create2_successful_then_returndatasize.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_then_create2_successful_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Suicide.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromCalledContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/StaticcallForPrecompilesIssue683.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_Gas2999.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/StaticcallForPrecompilesIssue683.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromTransaction.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromTransaction.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_Gas2999.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMBefore.json]
+[gw1] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoZ.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromTransaction.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest393.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Suicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeCreate.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest393.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest600.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOG.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest600.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest417.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata3.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest417.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest494.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_0_0_following_successful_create.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOG.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_0_0_following_successful_create.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest494.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate3.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest399.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest399.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest455.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle2.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest455.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest633.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_revert_in_create.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest633.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest480.json]
+[gw7] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_revert_in_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode.json]
+[gw4] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101.json]
+[gw3] [ 9%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest480.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest582.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest582.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest503.json]
+[gw4] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb3.json]
+[gw7] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest503.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2checkFieldsInInitcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest452.json]
+[gw4] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide1.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest452.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest421.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest421.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest596.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest596.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest488.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest488.json]
+[gw4] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest472.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls3.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest472.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest524.json]
+[gw6] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC3DiffPlaces.json]
+[gw1] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoZ.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoY.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc26DiffPlaces.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest524.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest630.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest630.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest587.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest587.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest647.json]
+[gw7] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2checkFieldsInInitcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionStorageParis.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest647.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest474.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest474.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest640.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest640.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest415.json]
+[gw7] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionStorageParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageRevertedOOGInInit2.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest415.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest422.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest422.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest514.json]
+[gw7] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageRevertedOOGInInit2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOGBerlin.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest514.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest528.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest528.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest564.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest564.json]
+[gw4] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls3.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest534.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4.json]
+[gw3] [ 10%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest534.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest499.json]
+[gw4] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest499.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest476.json]
+[gw4] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_2.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest476.json]
+[gw7] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOGBerlin.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest497.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest497.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest414.json]
+[gw7] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedOOG.json]
+[gw4] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_2.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest414.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest397.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest397.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest625.json]
+[gw7] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds2.json]
+[gw1] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoY.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0toX.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest625.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest412.json]
+[gw4] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractAndCallItOOG.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest412.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest607.json]
+[gw7] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2InitCodes.json]
+[gw4] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractAndCallItOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallLoseGasOOG.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest607.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest555.json]
+[gw4] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallLoseGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partial.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest555.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest487.json]
+[gw4] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partial.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_rip160.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest487.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest552.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest552.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest567.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest567.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest437.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest437.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest521.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest521.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest584.json]
+[gw7] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2InitCodes.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_create.json]
+[gw3] [ 11%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest584.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest641.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest641.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest588.json]
+[gw7] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollisionBerlin.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest588.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest523.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest523.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest409.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest409.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest443.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/clearReturnBuffer.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_staticcall.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest443.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest504.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_staticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest504.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest501.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemStartTooHigh.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest501.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest520.json]
+[gw1] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0toX.json]
+[gw7] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollisionBerlin.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoY.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_MaxTopic.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest520.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest396.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest396.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest451.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeZero.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest451.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest626.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_Caller.json]
+[gw7] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2noCash.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest626.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest583.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeTooHigh.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest583.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest517.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_Caller.json]
+[gw3] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest517.json]
+[gw7] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2noCash.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatasize_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest450.json]
+[gw5] [ 12%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeZero.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatasize_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_afterFailing_create.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest450.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest646.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_afterFailing_create.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeInCreateReturnsCreate2.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest646.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest471.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeInCreateReturnsCreate2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_successful_create.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest471.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest407.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1024.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeZero.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest407.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest603.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest603.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest419.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemStartTooHigh.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest419.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest628.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_emptyMem.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest628.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest589.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest589.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest388.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_MaxTopic.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest388.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest495.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeZero.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest495.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest643.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_MaxTopic.json]
+[gw7] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2Recursive.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest643.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest597.json]
+[gw5] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeTooHigh.json]
+[gw3] [ 13%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest597.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest395.json]
+[gw1] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoY.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toXto0.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_PC.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest395.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest398.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_PC.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest398.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest638.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemStartTooHigh.json]
+[gw6] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc26DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDFDiffPlaces.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest638.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest629.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemStartTooHigh.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest629.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest577.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_MaxTopic.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest577.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest466.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_Caller.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest466.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest608.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_emptyMem.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest608.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest624.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest624.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest562.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest562.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemStartTooHigh.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/logInOOG_Call.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest535.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/logInOOG_Call.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeTooHigh.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest535.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest442.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem.json]
+[gw3] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest442.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest457.json]
+[gw5] [ 14%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeTooHigh.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest457.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest416.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_emptyMem.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest416.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest575.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest575.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest533.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_PC.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest533.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest481.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest481.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest482.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_PC.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest482.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest425.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeTooHigh.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest425.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest645.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeZero.json]
+[gw1] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toXto0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0to0.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_emptyMem.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest645.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest506.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_emptyMem.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest506.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest438.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_emptyMem.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest438.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest496.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest496.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest461.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest461.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest473.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideEnd.json]
+[gw3] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest473.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest572.json]
+[gw5] [ 15%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest572.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest553.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideEnd.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest553.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest648.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGE.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest648.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest467.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGE.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMBefore.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_SuicideEnd.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideEnd.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMBefore.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMBefore.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMBefore.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_OOGE.json]
+[gw1] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0to0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoY.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMAfter.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest467.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest509.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+[gw3] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest509.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest639.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+[gw0] [ 16%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpToPush.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/gas.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGE.json]
+[gw0] [ 16%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/gas.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loopsConditionals.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_OOGE.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10.json]
+[gw5] [ 16%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest639.json]
+[gw6] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDFDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBCDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest537.json]
+[gw7] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2Recursive.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata2.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideMiddle.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest537.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest446.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011.json]
+[gw7] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest446.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest585.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMAfter.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest585.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest579.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest579.json]
+[gw1] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoY.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest477.json]
+[gw7] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoY.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideEnd.json]
+[gw0] [ 17%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loopsConditionals.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest477.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest402.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/return.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGE.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest402.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest440.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMAfter.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest440.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest513.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest513.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest563.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGE.json]
+[gw3] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest563.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest527.json]
+[gw5] [ 17%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGE.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest527.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest558.json]
+[gw0] [ 18%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/return.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOG.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore8.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2SmartInitCode.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGE.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest558.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest519.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest519.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest508.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_SuicideEnd.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2SmartInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertInCreateInInitCreate2Paris.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest508.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest424.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertInCreateInInitCreate2Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callcodeNonConst.json]
+[gw0] [ 18%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore8.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpi.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest424.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest578.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideEnd.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideEnd.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest578.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest604.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_SuicideEnd.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callcodeNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/subNonConst.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest604.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest498.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMAfter.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/subNonConst.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest498.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstore8NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest605.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest605.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest556.json]
+[gw5] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstore8NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log3NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest556.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest478.json]
+[gw3] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest478.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest554.json]
+[gw7] [ 18%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log3NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/byteNonConst.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMBefore.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideEnd.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/byteNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/gtNonConst.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/gtNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log1NonConst.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_OOGE.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log1NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/divNonConst.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideMiddle.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/divNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldatacopyNonConst.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest554.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest465.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest465.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest599.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldatacopyNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/balanceNonConst.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest599.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest445.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest445.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest550.json]
+[gw1] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoY.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toY.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/balanceNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulmodNonConst.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest550.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest560.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideMiddle.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest560.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest601.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111.json]
+[gw7] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulmodNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callNonConst.json]
+[gw3] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest601.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest406.json]
+[gw5] [ 19%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMAfter.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMAfter.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest406.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest454.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGE.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/xorNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest454.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest616.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSTATICCALL.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/xorNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/iszeroNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest616.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest649.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSTATICCALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extcodehashEmpty_Paris.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest649.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest387.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/iszeroNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sloadNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest387.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest644.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest644.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest510.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sloadNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/orNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest510.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest469.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/orNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/ltNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest469.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest650.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/ltNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/suicideNonConst.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/suicideNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/eqNonConst.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest650.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest439.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/eqNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/modNonConst.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extcodehashEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashChangedAccount.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest439.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest620.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashChangedAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/codeCopyZero_Paris.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest620.json]
+[gw7] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/modNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest386.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/expNonConst.json]
+[gw1] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toY.json]
+[gw5] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/codeCopyZero_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoX.json]
+[gw3] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest386.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest475.json]
+[gw6] [ 20%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBCDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB2DiffPlaces.json]
+[gw5] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashPrecompiles.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/expNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sdivNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest475.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest569.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest569.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest428.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sdivNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/delegatecallNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest428.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest483.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest483.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest505.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/delegatecallNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sgtNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest505.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest544.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest544.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest592.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sgtNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sltNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest592.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest470.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sltNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest470.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest545.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/signextNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest545.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest449.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest449.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/signextNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest531.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/codecopyNonConst.json]
+[gw0] [ 21%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpi.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pc.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest531.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest516.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/codecopyNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstoreNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest516.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest500.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest500.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest547.json]
+[gw0] [ 21%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pc.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/msize.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstoreNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest547.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest627.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest627.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest389.json]
+[gw7] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addNonConst.json]
+[gw3] [ 21%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest389.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest491.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest491.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest462.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/returnNonConst.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashPrecompiles.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashMaxCodeSize.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest462.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest571.json]
+[gw1] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoX.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/returnNonConst.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest571.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest401.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodecopyNonConst.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashMaxCodeSize.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest401.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest436.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDELEGATECALL.json]
+[gw0] [ 22%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/msize.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/sstore_sload.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodecopyNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulNonConst.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDELEGATECALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/createEmptyThenExtcodehash.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest436.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest636.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/createEmptyThenExtcodehash.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountStaticCall.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldataloadNonConst.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountStaticCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2Cancun.json]
+[gw0] [ 22%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/sstore_sload.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/codecopy.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2Cancun.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelfInInit.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelfInInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashInInitCode.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldataloadNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/andNonConst.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashInInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelf.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/andNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addmodNonConst.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelf.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicide.json]
+[gw0] [ 22%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/codecopy.json]
+src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mload.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2.json]
+[gw3] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest636.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest532.json]
+[gw7] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addmodNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodesizeNonConst.json]
+[gw5] [ 22%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest532.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicideCancun.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest635.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest635.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicideCancun.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodesizeNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeCopyBounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mloadNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest541.json]
+[gw0] [ 23%] PASSED src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mload.json]
+src/tests/integration/test_conformance.py::test_vm[vmLogTest/log3.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest541.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeCopyBounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest435.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mloadNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpiNonConst.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest435.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest512.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/dynamicAccountOverwriteEmpty_Paris.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest512.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest559.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/dynamicAccountOverwriteEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashAccountWithoutCode.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpiNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/smodNonConst.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest559.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest493.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashAccountWithoutCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNonExistingAccount.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest493.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest456.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/smodNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log0NonConst.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNonExistingAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToNonExistent.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest456.json]
+[gw1] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoX.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest418.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionParis.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log0NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sstoreNonConst.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest418.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest566.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest566.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest411.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sstoreNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/createNonConst.json]
+[gw5] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToNonExistent.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount4.json]
+[gw3] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest411.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest484.json]
+[gw1] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_changeFromExternalCallInInitCode.json]
+[gw7] [ 23%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/createNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/notNonConst.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount4.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccountCancun.json]
+[gw0] [ 24%] PASSED src/tests/integration/test_conformance.py::test_vm[vmLogTest/log3.json]
+src/tests/integration/test_conformance.py::test_vm[vmLogTest/log0.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest484.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest384.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccountCancun.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNewAccount.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/notNonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log2NonConst.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest384.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest507.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNewAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALL.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest507.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest420.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALL.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log2NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALLCODE.json]
+src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sha3NonConst.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest420.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest413.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALLCODE.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1Cancun.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest413.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest615.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sha3NonConst.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds3.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1Cancun.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountRecheckInOuterCall.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest615.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest430.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds5.json]
+[gw5] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountRecheckInOuterCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDynamicArgument.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest430.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest546.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds5.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/createBlobhashTx.json]
+[gw7] [ 24%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/createBlobhashTx.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds7.json]
+[gw7] [ 24%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds7.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhBounds.json]
+[gw0] [ 24%] PASSED src/tests/integration/test_conformance.py::test_vm[vmLogTest/log0.json]
+src/tests/integration/test_conformance.py::test_vm[vmLogTest/log2.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest546.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest618.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhBounds.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/wrongBlobhashVersion.json]
+[gw7] [ 24%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/wrongBlobhashVersion.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhashOutOfRange.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest618.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest542.json]
+[gw3] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest542.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest637.json]
+[gw7] [ 24%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhashOutOfRange.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/emptyBlobhashList.json]
+[gw7] [ 25%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/emptyBlobhashList.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds6.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest637.json]
+[gw5] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDynamicArgument.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest536.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount3.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds6.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds4.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest536.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest429.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds4.json]
+[gw5] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount3.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountCall.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/14_revertAfterNestedStaticcall.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest429.json]
+[gw1] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_changeFromExternalCallInInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest565.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toX.json]
+[gw5] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToSuicideThenExtcodehash.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/14_revertAfterNestedStaticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/19_oogUndoesTransientStore.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest565.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest632.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/19_oogUndoesTransientStore.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/17_tstoreGas.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest632.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest433.json]
+[gw7] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/17_tstoreGas.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageOK.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest433.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest489.json]
+[gw5] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToSuicideThenExtcodehash.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest489.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest621.json]
+[gw0] [ 25%] PASSED src/tests/integration/test_conformance.py::test_vm[vmLogTest/log2.json]
+src/tests/integration/test_conformance.py::test_vm[vmLogTest/log4.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest621.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest539.json]
+[gw5] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallOOG.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest539.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest502.json]
+[gw6] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB2DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4ADiffPlaces.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest502.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest444.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest444.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest518.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest518.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest548.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest548.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest610.json]
+[gw3] [ 25%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest610.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest543.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToNotExistingContract.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest543.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest485.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToNotExistingContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/NewGasPriceForCodes.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest485.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest447.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/NewGasPriceForCodes.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest447.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest581.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest581.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest408.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64e0.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest408.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64e0.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64p1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest410.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64p1.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_integerBoundaries.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest410.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest511.json]
+[gw1] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXto0.json]
+[gw0] [ 26%] PASSED src/tests/integration/test_conformance.py::test_vm[vmLogTest/log4.json]
+src/tests/integration/test_conformance.py::test_vm[vmLogTest/log1.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_integerBoundaries.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAskMoreGasOnDepth2ThenTransactionHas.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAskMoreGasOnDepth2ThenTransactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest511.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest576.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CreateAndGasInsideCreate.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest576.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest464.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CreateAndGasInsideCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest464.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest611.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest611.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest426.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+[gw7] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageOK.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/DelegateCallOnEIP.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/10_revertUndoesStoreAfterReturn.json]
+[gw3] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest426.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest612.json]
+[gw5] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/DelegateCallOnEIP.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64m1.json]
+[gw7] [ 26%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/10_revertUndoesStoreAfterReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/15_tstoreCannotBeDosd.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest612.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest405.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64m1.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToExistingContract.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest405.json]
+[gw0] [ 27%] PASSED src/tests/integration/test_conformance.py::test_vm[vmLogTest/log1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest602.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/dup.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToExistingContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT01.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest602.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest526.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest526.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest580.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest580.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest642.json]
+[gw5] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT01.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/addressOpcodes.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest642.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest525.json]
+[gw1] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXto0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest525.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest460.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest460.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest448.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest448.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest586.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest586.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest609.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest609.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest385.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest385.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest574.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest574.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest404.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest404.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest458.json]
+[gw0] [ 27%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/dup.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/blockInfo.json]
+[gw6] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4ADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2EDiffPlaces.json]
+[gw1] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionNonZeroNonce.json]
+[gw0] [ 27%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/blockInfo.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/calldataload.json]
+[gw1] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionNonZeroNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYto0.json]
+[gw0] [ 27%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/calldataload.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/sha3.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest458.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/sec80.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/sec80.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_bigger.json]
+[gw3] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_bigger.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexp.json]
+[gw1] [ 27%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYto0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoX.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/addressOpcodes.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/transactionCosts.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/sha3.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/push.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/transactionCosts.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT2.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT2.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/storageCosts.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0toX.json]
+[gw6] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE9DiffPlaces.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0toX.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0to0.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/push.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/calldatasize.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0to0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_gasLeft.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/storageCosts.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/manualCreate.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/manualCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP2930/variedContext.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_gasLeft.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceUpdate.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceUpdate.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceEqualsBalance.json]
+[gw1] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceEqualsBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/diffPlaces.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/calldatasize.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/swap.json]
+[gw6] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2CDiffPlaces.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/swap.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/random.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/random.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/suicide.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/suicide.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/calldatacopy.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/calldatacopy.json]
+src/tests/integration/test_conformance.py::test_vm[vmTests/envInfo.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP2930/variedContext.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toNonExistent.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toNonExistent.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toEpmtyParis.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toEpmtyParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/vitalikTransactionTestParis.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/vitalikTransactionTestParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide2.json]
+[gw3] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexp.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/delegatecall09Undefined.json]
+[gw5] [ 28%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide2.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_ZeroVCallSuicide.json]
+[gw0] [ 28%] PASSED src/tests/integration/test_conformance.py::test_vm[vmTests/envInfo.json]
+src/tests/integration/test_conformance.py::test_vm[vmPerformance/performanceTester.json]
+[gw3] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/delegatecall09Undefined.json]
+[gw1] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/diffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceGasCost.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_ZeroVCallSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_smaller.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/callToEmptyThenCallErrorParis.json]
+[gw1] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceGasCost.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceCallTypes.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/callToEmptyThenCallErrorParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXP_Empty.json]
+[gw3] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_smaller.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/precompsEIP2929Cancun.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXP_Empty.json]
+src/tests/integration/test_conformance.py::test_bchain[stChainId/chainId.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stChainId/chainId.json]
+src/tests/integration/test_conformance.py::test_bchain[stChainId/chainIdGasCost.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stChainId/chainIdGasCost.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_256.json]
+[gw1] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceCallTypes.json]
+src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalance.json]
+[gw1] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/byzantium/eip198_modexp_precompile/modexp.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shiftCombinations.json]
+[gw6] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2CDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB3DiffPlaces.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shiftCombinations.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr01.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr01.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_1.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_257.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_257.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_256.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0101.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0101.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl_2^255-1_1.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl_2^255-1_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_255.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_257.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_257.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_0.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_1.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_1.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_0.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_256.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_0.json]
+[gw5] [ 29%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr11.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr11.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar00.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar00.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_1.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl10.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl10.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shiftSignedCombinations.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shiftSignedCombinations.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_248.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_248.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_256.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_256.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_255.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_254.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_254.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar01.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar01.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_256.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_256.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0100.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0100.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_255.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^254_254.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^254_254.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar11.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar11.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_0_256-1.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_0_256-1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl11.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl11.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_1.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_255.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar10.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar10.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_255.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_255.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_255.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl01.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl01.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shr10.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shr10.json]
+src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-ff.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-ff.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideEnd.json]
+[gw5] [ 30%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001.json]
+[gw6] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB3DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4CDiffPlaces.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideEnd.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMBefore.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_SuicideEnd.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideEnd.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMBefore.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMBefore.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMBefore.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_OOGE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMAfter.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_OOGE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideMiddle.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMAfter.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+[gw5] [ 31%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGE.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMAfter.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11.json]
+[gw2] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_Attack.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/StackDepthLimitSEC.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGE.json]
+[gw2] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/StackDepthLimitSEC.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/sha3_deja.json]
+[gw2] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/sha3_deja.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_AttackwithJump.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGE.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMBefore.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMAfter.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+[gw1] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/byzantium/eip198_modexp_precompile/modexp.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_stack_overflow.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMBefore.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideEnd.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+[gw6] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4CDiffPlaces.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc27DiffPlaces.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_OOGE.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideMiddle.json]
+[gw5] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+[gw1] [ 32%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_stack_overflow.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_during_fork.json]
+[gw1] [ 32%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_during_fork.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_before_fork.json]
+[gw1] [ 32%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_before_fork.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_out_of_gas.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110.json]
+[gw1] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_out_of_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_two_different_transactions.json]
+[gw1] [ 33%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_two_different_transactions.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_pre_existing.json]
+[gw1] [ 33%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_pre_existing.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/reentrancy_selfdestruct_revert.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMAfter.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideMiddle.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMAfter.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGE.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE3DiffPlaces.json]
+[gw1] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/reentrancy_selfdestruct_revert.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx.json]
+[gw1] [ 33%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_pre_existing_contract_to_new_contract.json]
+[gw6] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc27DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD8DiffPlaces.json]
+[gw5] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE3DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDEDiffPlaces.json]
+[gw1] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_pre_existing_contract_to_new_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode_create_tx.json]
+[gw1] [ 33%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode_create_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_in_same_tx_with_revert.json]
+[gw1] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_in_same_tx_with_revert.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_not_created_in_same_tx_with_revert.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_rip160.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_postfix0.json]
+[gw1] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_not_created_in_same_tx_with_revert.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode.json]
+[gw1] [ 33%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_same_block_different_tx.json]
+[gw1] [ 33%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_same_block_different_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/recreate_self_destructed_contract_different_txs.json]
+[gw1] [ 33%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/recreate_self_destructed_contract_different_txs.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx_increased_nonce.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_postfix0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert3.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE_2.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls3.json]
+[gw4] [ 33%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideTwice.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideTwice.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx_increased_nonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_2.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd2.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest2.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE2.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE_2.json]
+[gw6] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD8DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF8DiffPlaces.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_multi_tx.json]
+[gw1] [ 34%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_multi_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_new_contract_to_pre_existing_contract.json]
+[gw5] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5EDiffPlaces.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle2.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_new_contract_to_pre_existing_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_after_store.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_after_store.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/transient_storage_unset_values.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/transient_storage_unset_values.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/contract_creation.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/contract_creation.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_tx.json]
+[gw1] [ 34%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_deployment_tx.json]
+[gw1] [ 34%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_deployment_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_gasprice.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_gasprice.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_transaction_begin.json]
+[gw1] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_transaction_begin.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/subcall.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallOpCodeCheck.json]
+[gw4] [ 34%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallOpCodeCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_1.json]
+[gw0] [ 34%] PASSED src/tests/integration/test_conformance.py::test_vm[vmPerformance/performanceTester.json]
+src/tests/integration/test_conformance.py::test_vm[vmPerformance/loopMul.json]
+[gw0] [ 35%] SKIPPED src/tests/integration/test_conformance.py::test_vm[vmPerformance/loopMul.json]
+src/tests/integration/test_conformance.py::test_vm[vmPerformance/loopExp.json]
+[gw0] [ 35%] SKIPPED src/tests/integration/test_conformance.py::test_vm[vmPerformance/loopExp.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/add.json]
+[gw0] [ 35%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/add.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sub.json]
+[gw0] [ 35%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sub.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/signextend.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_2.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_OneVCallSuicide.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_OneVCallSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromContractInitialization.json]
+[gw6] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF8DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA5DiffPlaces.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromContractInitialization.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts2_Paris.json]
+[gw1] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/subcall.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_selfdestructing_call.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_PostToReturn1.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_PostToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE2.json]
+[gw0] [ 35%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/signextend.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/smod.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractAndCallIt_0wei.json]
+[gw1] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_selfdestructing_call.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_reentrancy.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractAndCallIt_0wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter.json]
+[gw0] [ 35%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/smod.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mod.json]
+[gw5] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0FDiffPlaces.json]
+[gw0] [ 35%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mod.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256.json]
+[gw0] [ 35%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/divByZero.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_NoGas.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_NoGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore2.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOGBonusGas.json]
+[gw4] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOGBonusGas.json]
+[gw1] [ 35%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_reentrancy.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/run_until_out_of_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore2.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemStartTooHigh.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_2.json]
+[gw6] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDDDiffPlaces.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_ABCB_RECURSIVE.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter.json]
+[gw5] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0FDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBEDiffPlaces.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter2.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_2.json]
+[gw4] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_2.json]
+[gw6] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDDDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD9DiffPlaces.json]
+[gw3] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/precompsEIP2929Cancun.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/blake2B.json]
+[gw5] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4EDiffPlaces.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/divByZero.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/addmod.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/addmod.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sdiv.json]
+[gw3] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/blake2B.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/idPrecomps.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sdiv.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256Of256.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256Of256.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/not.json]
+[gw6] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB6DiffPlaces.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/not.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/fib.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/fib.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower2.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower2.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/arith.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/arith.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/twoOps.json]
+[gw5] [ 36%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4DDiffPlaces.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/twoOps.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mulmod.json]
+[gw0] [ 36%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mulmod.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/exp.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/exp.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/div.json]
+[gw6] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE8DiffPlaces.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/div.json]
+src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mul.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mul.json]
+src/tests/integration/test_conformance.py::test_rest_vm[vmPerformance/loopMul.json]
+[gw0] [ 37%] SKIPPED src/tests/integration/test_conformance.py::test_rest_vm[vmPerformance/loopMul.json]
+[gw5] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4DDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_rest_vm[vmPerformance/loopExp.json]
+[gw0] [ 37%] SKIPPED src/tests/integration/test_conformance.py::test_rest_vm[vmPerformance/loopExp.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemSeg.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCEDiffPlaces.json]
+[gw6] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE8DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEADiffPlaces.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemSeg.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGas.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGasAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGasAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferAsk.json]
+[gw5] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCADiffPlaces.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemoryAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemoryAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGas.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransferMemory.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransferMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemoryAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemoryAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemoryAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemoryAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasAsk.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929.json]
+[gw6] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE6DiffPlaces.json]
+[gw5] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1FDiffPlaces.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransfer.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostExp.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostExp.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929OOG.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawBalanceGas.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawBalanceGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyGas.json]
+[gw0] [ 37%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostJump.json]
+[gw0] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostJump.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemory.json]
+[gw6] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2DDiffPlaces.json]
+[gw3] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/idPrecomps.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexpTests.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_AttackwithJump.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/eoaEmptyParis.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/eoaEmptyParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/block504980.json]
+[gw5] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1FDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAADiffPlaces.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/block504980.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/makeMoney.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/makeMoney.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/selfdestructEIP2929.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/selfdestructEIP2929.json]
+src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/failed_tx_xcf416c53_Paris.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/failed_tx_xcf416c53_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreGasOnCreate.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreGasOnCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageReverted.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageReverted.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasPriceParis.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasPriceParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCallFailed.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCallFailed.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsOOG.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToItself.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToItself.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCall.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToZero.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesStopAfterSuicide.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesStopAfterSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToAddressh160minusOne.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToAddressh160minusOne.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasLimit.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/EmptyTransaction3.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/EmptyTransaction3.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit2.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit2.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesOOG.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionDataCosts652.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionDataCosts652.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ValueOverflowParis.json]
+[gw6] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2DDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5FDiffPlaces.json]
+[gw2] [ 38%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ValueOverflowParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate1559.json]
+[gw0] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeSizeGas.json]
+[gw0] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeSizeGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemoryAsk.json]
+[gw0] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemoryAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemory.json]
+[gw0] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyMemoryGas.json]
+[gw0] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyMemoryGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransfer.json]
+[gw0] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasMemory.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate1559.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount1559.json]
+[gw0] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCost.json]
+[gw5] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD0DiffPlaces.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount1559.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToEmpty.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToEmpty.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/PointAtInfinityECRecover.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/PointAtInfinityECRecover.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsSuccess.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate.json]
+[gw6] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5FDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF7DiffPlaces.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/OverflowGasRequire2.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/OverflowGasRequire2.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsSuccess.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsOOG.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsSuccess.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateTransactionSuccess.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateTransactionSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageSuccess.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimitSuccess.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexpTests.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_1.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimitSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsOOG.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesSuccess.json]
+[gw2] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesSuccess.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover2.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle.json]
+[gw3] [ 39%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024OOG.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter2.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_gas3000.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_gas3000.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls1.json]
+[gw5] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD0DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDADiffPlaces.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueOOGinCall.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueOOGinCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover1.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log_Caller.json]
+[gw2] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndSendMoneyToItselfEtherDestroyed.json]
+[gw2] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndSendMoneyToItselfEtherDestroyed.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/Opcodes_TransactionInit.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log_Caller.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4_gas719.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4_gas719.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls2.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE2.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_5.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4_gas99.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4_gas99.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverV_prefixed0.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverV_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallA.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallA.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_5.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_ZeroVCallSuicide.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_ZeroVCallSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertOpcodeCalls.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertOpcodeCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore2.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter2.json]
+[gw6] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC2DiffPlaces.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValue.json]
+[gw5] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE0DiffPlaces.json]
+[gw3] [ 40%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_CALL_OOGRevert.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_CALL_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate2.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle2.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverR_prefixed0.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverR_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeZero.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_1102.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_1102.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverS_prefixed0.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverS_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01_OOGE.json]
+[gw0] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCost.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGas.json]
+[gw0] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostBerlin.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE.json]
+[gw6] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC2DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2FDiffPlaces.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_overlappingInputOutput.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_overlappingInputOutput.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes2.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_WithValue.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_WithValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert2_Paris.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmpty_Paris.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyOOG_Paris.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyOOG_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCallCode.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCallCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundOOG.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCreateReturns.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCreateReturns.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCall.json]
+[gw3] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouchExactOOG_Paris.json]
+[gw5] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE0DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/eip2315NotRemoved.json]
+[gw5] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/eip2315NotRemoved.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/undefinedOpcodeFirstByte.json]
+[gw5] [ 41%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/undefinedOpcodeFirstByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBBDiffPlaces.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/Opcodes_TransactionInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_send_Paris.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_send_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_callsItself.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_callsItself.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP3607/initCollidingWithNonEmptyAccount.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP3607/initCollidingWithNonEmptyAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_init_Paris.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_init_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_calls.json]
+[gw6] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2FDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcADDiffPlaces.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_calls.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest311.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest311.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest238.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest238.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest185.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest185.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest381.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest381.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest43.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest43.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest285.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest285.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest2.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest197.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest197.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest85.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest85.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest115.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest115.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest41.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest41.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest305.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest305.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest336.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest336.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest367.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest367.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest210.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest210.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest211.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest211.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest320.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest320.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest73.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest73.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest369.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest369.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest221.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest221.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest67.json]
+[gw2] [ 42%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest67.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest159.json]
+[gw5] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBBDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidAddr.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest159.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest129.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest129.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest156.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest156.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest3.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest3.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest194.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest194.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest138.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest138.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest230.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest230.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest95.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest95.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest357.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest357.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest153.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest153.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest5.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest5.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest14.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest14.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest315.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest315.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest24.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest24.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest380.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest380.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest350.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest350.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest199.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest199.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest379.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest379.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest243.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest243.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest179.json]
+[gw6] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcADDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc21DiffPlaces.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest179.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest332.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest332.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest81.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest81.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest207.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest207.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest148.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest148.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest84.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest84.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest304.json]
+[gw2] [ 43%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest304.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest103.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest103.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest217.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest217.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest124.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest124.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest143.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest143.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest176.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostBerlin.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferAsk.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest176.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest232.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemory.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest232.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest114.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest114.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest220.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemory.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemory.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest220.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest294.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemory.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest294.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest365.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemory.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer2.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer2.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGas.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest365.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest48.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasAsk.json]
+[gw0] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929-ff.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest48.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest12.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouchExactOOG_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCallOOG_Paris.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest12.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest359.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest359.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest145.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCallOOG_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefound.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest145.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest137.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefound.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCreateInInit_Paris.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest137.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest30.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCreateInInit_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert_Paris.json]
+[gw2] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest30.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest259.json]
+[gw3] [ 44%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_storage_Paris.json]
+[gw0] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929-ff.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransfer.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest259.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest131.json]
+[gw0] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostReturn.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest131.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest134.json]
+[gw0] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGas.json]
+[gw0] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_128.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest134.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest245.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest245.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest163.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_storage_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertRemoteSubCallStorageOOG.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest163.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest266.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest266.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest187.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertRemoteSubCallStorageOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToNonZeroBalance.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest187.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest248.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToNonZeroBalance.json]
+[gw0] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_128.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest248.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest112.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest112.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest126.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest126.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest355.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToNonZeroBalance.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest355.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest166.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+[gw0] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_128.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest166.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest39.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_96.json]
+[gw2] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest39.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest57.json]
+[gw3] [ 45%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToEmpty_Paris.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest57.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest17.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToNonZeroBalance.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest17.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest74.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest74.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest191.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest191.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest231.json]
+[gw0] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_96.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_128.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest231.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest15.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest15.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest119.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest119.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest118.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest118.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest301.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest301.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest338.json]
+[gw0] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_25000_128.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToNonZeroBalance.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest338.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest249.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest249.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest146.json]
+[gw6] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc21DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD1DiffPlaces.json]
+[gw3] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest146.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest275.json]
+[gw2] [ 46%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest275.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest150.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToEmpty_Paris.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToEmpty_Paris.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_getEtherBack.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_getEtherBack.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_changeNonZeroStorage.json]
+[gw0] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_96.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_changeNonZeroStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideStorage.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideTwice.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideTwice.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_multimpleSuicide.json]
+[gw0] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_64.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_multimpleSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSuicide50procentCap.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSuicide50procentCap.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_NoOOG_1.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_NoOOG_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_notEnoughGasInCall.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest150.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest110.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_notEnoughGasInCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50percentCap.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest110.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest18.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50percentCap.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_OOG.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest18.json]
+[gw5] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidAddr.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest149.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC9DiffPlaces.json]
+[gw0] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_80.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_OOG.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest149.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest202.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund600.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest202.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest298.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund600.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_OOG.json]
+[gw2] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest298.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest96.json]
+[gw3] [ 47%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_OOG.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest96.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSSTORE.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest25.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSSTORE.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest25.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest52.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicideOOG.json]
+[gw0] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_96.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicideOOG.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest52.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest310.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_1.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest310.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest1.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_singleSuicide.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_singleSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideNoStorage.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest0.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest0.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest323.json]
+[gw0] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_128.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest323.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest345.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideNoStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_2.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest345.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest55.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundFF.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest55.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundFF.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest269.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundMax.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundMax.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest269.json]
+src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest188.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest188.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest133.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsBefore.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsBefore.json]
+[gw0] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAfterTransition.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_64.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest133.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest265.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAfterTransition.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAtTransition.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest265.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest246.json]
+[gw3] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAtTransition.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAt.json]
+[gw2] [ 48%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest246.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest327.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAt.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallBeforeTransition.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest327.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest371.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallBeforeTransition.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest371.json]
+src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest341.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAfter.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest341.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest72.json]
+[gw0] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_64.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_2.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest72.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest66.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_postfixed0.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_postfixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas18.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest66.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest361.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest361.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest306.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas18.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_NoGas.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_NoGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4.json]
+[gw0] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_35000.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_128.json]
+[gw0] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_21000_128.json]
+[gw6] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD1DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE1DiffPlaces.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest306.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest125.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest125.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest363.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest363.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest142.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest142.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest47.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest47.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest334.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_35000.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas18.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest334.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest376.json]
+[gw0] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_128.json]
+[gw3] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas18.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0.json]
+[gw2] [ 49%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest376.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest92.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_completeReturnValue.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_completeReturnValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverH_prefixed0.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest92.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest366.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest366.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest288.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverH_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLength.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest288.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLength.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest309.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover80.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest309.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest340.json]
+[gw0] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_96.json]
+[gw3] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover80.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverWeirdV.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest340.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest267.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest267.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest362.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest362.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest368.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest368.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest353.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest353.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest364.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest364.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest64.json]
+[gw5] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD2DiffPlaces.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest64.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest349.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest349.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest189.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest189.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest10.json]
+[gw0] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_128.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest10.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest216.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest216.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest278.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest278.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest173.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest173.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest88.json]
+[gw2] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest88.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest6.json]
+[gw0] [ 50%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_25000_192.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest6.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest322.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest322.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest356.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest356.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest100.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest100.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest282.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest282.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest318.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest318.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest205.json]
+[gw0] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_25000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_80_Paris.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest205.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest378.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest378.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest206.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest206.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest11.json]
+[gw0] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_80_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_21000_128.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest11.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest273.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest273.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest190.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest190.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest215.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest215.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest154.json]
+[gw0] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_21000_128.json]
+[gw3] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverWeirdV.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover_Overflow.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_96.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest154.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest60.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest60.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest268.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest268.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest351.json]
+[gw0] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_96.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest351.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest135.json]
+[gw3] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover_Overflow.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_1_nonzeroValue.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest135.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest321.json]
+[gw3] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_0.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest321.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest198.json]
+[gw3] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexpRandomInput.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest198.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest82.json]
+[gw2] [ 51%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest82.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest80.json]
+[gw0] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_128.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest80.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest212.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest212.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest225.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest225.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest200.json]
+[gw3] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexpRandomInput.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4_gas719.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest200.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest62.json]
+[gw3] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4_gas719.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_1.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest62.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest279.json]
+[gw3] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_25000.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest279.json]
+[gw6] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE1DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest117.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC6DiffPlaces.json]
+[gw0] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_128.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest117.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest208.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest208.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest19.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest19.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest53.json]
+[gw3] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_25000.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_overlappingInputOutput.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest53.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest236.json]
+[gw3] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_overlappingInputOutput.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_5.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest236.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest261.json]
+[gw0] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_128.json]
+[gw3] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_NoGas.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest261.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest280.json]
+[gw3] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_NoGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_postfix0.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest280.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest337.json]
+[gw3] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_postfix0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_2.json]
+[gw5] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD2DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE2DiffPlaces.json]
+[gw2] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest337.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest299.json]
+[gw3] [ 52%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverS_prefixed0.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverS_prefixed0.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest299.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest271.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_5.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest271.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest312.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_Gas2999.json]
+[gw0] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_128.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest312.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest257.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_Gas2999.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover1.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest257.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover1.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest354.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas17.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas17.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest354.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest13.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverR_prefixed0.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest13.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverR_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_gas3000.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest313.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_gas3000.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest313.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest147.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_prefix0.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest147.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest214.json]
+[gw0] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_0.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_prefix0.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest214.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest107.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverInvalidSignature.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest107.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest286.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverInvalidSignature.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_0.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverH_prefixed0.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest286.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest296.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverH_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_5.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest296.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest105.json]
+[gw2] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest105.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest346.json]
+[gw3] [ 53%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_1.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest346.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest283.json]
+[gw3] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest283.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest227.json]
+[gw3] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_2.json]
+[gw3] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_2.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest227.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest222.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_0input.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest222.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest178.json]
+[gw3] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_0input.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLBlake2f.json]
+[gw0] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_0.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest178.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest36.json]
+[gw0] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_128.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest36.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest348.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest348.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest20.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest20.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest155.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest155.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest219.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest219.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest180.json]
+[gw0] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_128.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest180.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest242.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest242.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest192.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest192.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest335.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest335.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest302.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest302.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest307.json]
+[gw0] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_64.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest307.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest290.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest290.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest69.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest69.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest169.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest169.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest196.json]
+[gw2] [ 54%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest196.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest98.json]
+[gw0] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_64.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest98.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest9.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_128.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest9.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest358.json]
+[gw6] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD5DiffPlaces.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest358.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest171.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest171.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest29.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest29.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest122.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest122.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest308.json]
+[gw0] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_128.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest308.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest316.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest316.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest111.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest111.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest360.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest360.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest244.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest244.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest102.json]
+[gw0] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_96.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest102.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest83.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest83.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest139.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest139.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest352.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest352.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest78.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest78.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest162.json]
+[gw0] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_96.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest162.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest237.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest237.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest252.json]
+[gw5] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE2DiffPlaces.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest252.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/operationDiffGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest281.json]
+[gw3] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLBlake2f.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_prefixed0.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest281.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest333.json]
+[gw3] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4.json]
+[gw2] [ 55%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest333.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest167.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixed0.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest167.json]
+[gw0] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest383.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_96.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLengthWrongV.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest383.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLengthWrongV.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover3.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest59.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverShortBuff.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest59.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest4.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest4.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest326.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest326.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest303.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverShortBuff.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4_gas99.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest303.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest184.json]
+[gw0] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_192.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest184.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4_gas99.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas17.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest45.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas17.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover3.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest45.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest23.json]
+[gw3] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEBlake2f.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest23.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest263.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest263.json]
+src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest297.json]
+[gw0] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_192.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest297.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_fail_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_128.json]
+[gw5] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/operationDiffGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA8DiffPlaces.json]
+[gw0] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_80.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_fail_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_128.json]
+[gw0] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_96.json]
+[gw2] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_64.json]
+[gw0] [ 56%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_25000_128.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_80.json]
+[gw6] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEDDiffPlaces.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_80.json]
+[gw0] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_128.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_2.json]
+[gw0] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_128.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEBlake2f.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_gas3000.json]
+[gw0] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_21000_128.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_2.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_gas3000.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_1.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_3.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixedf0.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixedf0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4.json]
+[gw0] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_21000_128.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_20500.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_96.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_128.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_20500.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_6_inputShorterThanOutput.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_6_inputShorterThanOutput.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_96.json]
+[gw0] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_128.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverR_prefixed0.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverR_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover2.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_0.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4_gas99.json]
+[gw5] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA8DiffPlaces.json]
+[gw2] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC0DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero_and_g1_invalid.json]
+[gw3] [ 57%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4_gas99.json]
+[gw0] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_128.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4_gas719.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4_gas719.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_5.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_prefix0.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero_and_g1_invalid.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_prefix0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_96.json]
+[gw0] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_96.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover80.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_0.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_1.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_2.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_3.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverS_prefixed0.json]
+[gw0] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_96.json]
+[gw2] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_96.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverS_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverUnrecoverableKey.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverUnrecoverableKey.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1_nonzeroValue.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_5.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_2.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_prefixed0.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover2.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_2.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover1.json]
+[gw6] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEDDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/measureGas.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover1.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_0.json]
+[gw3] [ 58%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_0input.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_0input.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_postfixed0.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_191.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_postfixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_64.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_completeReturnValue.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_completeReturnValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1_nonzeroValue.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_1_nonzeroValue.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverV_prefixed0.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_191.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_128.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverV_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_128.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_128.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_128.json]
+[gw6] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/measureGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAEDiffPlaces.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_96.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter2.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_96.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_96.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_21000_192.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog2.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_64.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertDepth2.json]
+[gw0] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_21000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_128.json]
+[gw3] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertDepth2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromCalledContract.json]
+[gw2] [ 59%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_128.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromCalledContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_3.json]
+[gw5] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC0DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcABDiffPlaces.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_96.json]
+[gw2] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_96.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_64.json]
+[gw2] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_128.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_128.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_3.json]
+[gw2] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_1.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_128.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE2.json]
+[gw2] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_64.json]
+[gw3] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsThenRevert.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_96.json]
+[gw2] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_96.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_128.json]
+[gw6] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA6DiffPlaces.json]
+[gw2] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_2.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_192.json]
+[gw2] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_25000_128.json]
+[gw5] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcABDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBADiffPlaces.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_64.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_25000_80_Paris.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_25000_80_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_96.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_96_Paris.json]
+[gw0] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_96_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_96.json]
+[gw2] [ 60%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_128.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_128.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_80.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_128.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_128.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_128.json]
+[gw6] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_40.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_128.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_field_modulus.json]
+[gw5] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBDDiffPlaces.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_40.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_96.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_field_modulus.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_128.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_80.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_curve_order.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_96.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_curve_order.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_128.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_80.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_128.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_96.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_128.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_80.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_96.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_80.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_not_in_subgroup.json]
+[gw6] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc25DiffPlaces.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_80.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_not_in_subgroup.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_128.json]
+[gw0] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_192.json]
+[gw2] [ 61%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_96.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_192.json]
+[gw5] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBDDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc28DiffPlaces.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_96.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_96.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_96.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_96.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_96.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_128.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_one.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_128.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_one.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_curve_order.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_128.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_curve_order.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_28000_128.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_80.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_96.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_40.json]
+[gw6] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc25DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB0DiffPlaces.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_match_1.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_40.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_128.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_match_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_oog.json]
+[gw5] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc28DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0DDiffPlaces.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_128.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_192.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_oog.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_96.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_80.json]
+[gw2] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd2.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_128.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_128.json]
+[gw0] [ 62%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_128.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_128.json]
+[gw6] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB0DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCDDiffPlaces.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_128.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_192.json]
+[gw5] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0DDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidDiffPlaces.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_128.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_0.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_128.json]
+[gw6] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCDDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF6DiffPlaces.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_96.json]
+[gw5] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2BDiffPlaces.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_64.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_25000_128.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_128.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_0.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_0.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_96.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_21000_128.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_21000_80.json]
+[gw6] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB8DiffPlaces.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_80.json]
+[gw2] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_3.json]
+[gw0] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_64.json]
+[gw5] [ 63%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2BDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcECDiffPlaces.json]
+[gw2] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_80.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_128.json]
+[gw2] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_128.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_96.json]
+[gw2] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_inputs.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_128.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_192.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_192.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_80.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_64.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_96.json]
+[gw6] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB8DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc22DiffPlaces.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_96.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_96.json]
+[gw5] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcECDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2ADiffPlaces.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_128.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_96.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_96.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_96.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_128.json]
+[gw6] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc22DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD7DiffPlaces.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/transactionIntinsicBug_Paris.json]
+[gw0] [ 64%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/transactionIntinsicBug_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/typeTwoBerlin.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/typeTwoBerlin.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowFeeCap.json]
+[gw0] [ 64%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowFeeCap.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowGasLimit.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowGasLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/tipTooHigh.json]
+[gw0] [ 64%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/tipTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/valCausesOOF.json]
+[gw0] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/valCausesOOF.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/intrinsic.json]
+[gw5] [ 64%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2ADiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA7DiffPlaces.json]
+[gw6] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC4DiffPlaces.json]
+[gw5] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB7DiffPlaces.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_inputs.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_96.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_128.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_96.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_96.json]
+[gw6] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC4DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5CDiffPlaces.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pairingTest.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsThenRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_1.json]
+[gw5] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDCDiffPlaces.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel2.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_SuicideEnd.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToDelCallOpCodeCheck.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToDelCallOpCodeCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndGasOOG.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pairingTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_80.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall2.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE2.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_96.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partialFail.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_128.json]
+[gw2] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_128.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partialFail.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump1.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump0.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorZeorSizeMemExpansion.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorZeorSizeMemExpansion.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherPostDeath.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherPostDeath.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigRight.json]
+[gw6] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5CDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAFDiffPlaces.json]
+[gw3] [ 65%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigRight.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherToMe.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherToMe.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/TestNameRegistrator.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/TestNameRegistrator.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds1.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CreateHashCollision.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CreateHashCollision.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTest.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_128.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_96.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeTo0.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeTo0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb2.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return0.json]
+[gw5] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDCDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDBDiffPlaces.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/testRandomTest.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/testRandomTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideOrigin.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_128.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideOrigin.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory0.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb3.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb3.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callValue.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callValue.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return1.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callerAccountBalance.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callerAccountBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTouch_Paris.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTouch_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory0.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_one.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToReturn1.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigRight.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigRight.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistrator.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistrator.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide1.json]
+[gw2] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_one.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_5.json]
+[gw3] [ 66%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigLeft.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigLeft.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/PostToReturn1.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/PostToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem2.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory1.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls2.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_80.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorValueTooHigh.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorValueTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CalltoReturn2.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_80.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CalltoReturn2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/currentAccountBalance.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/currentAccountBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls3.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls3.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorOutOfGas.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorOutOfGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory1.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createWithInvalidOpcode.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_128.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createWithInvalidOpcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb1.json]
+[gw6] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAFDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC5DiffPlaces.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideNotExistingAccount.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideNotExistingAccount.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide0.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog2.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_128.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistrator0.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistrator0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/extcodecopy.json]
+[gw2] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_96.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/extcodecopy.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigRight.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigRight.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOOG_MemExpansionOOV.json]
+[gw3] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOOG_MemExpansionOOV.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog.json]
+[gw5] [ 67%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDBDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC7DiffPlaces.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_fail.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorMemOOGAndInsufficientBalance.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorMemOOGAndInsufficientBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigLeft.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigLeft.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideAddress.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideAddress.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMemExpansion.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_fail.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_96.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMemExpansion.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/Call10.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/Call10.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/multiSelfdestruct.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_96.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/multiSelfdestruct.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigLeft.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigLeft.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return2.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds0.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_128.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistrator0.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistrator0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_96.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls0.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls0.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorZeroMemExpanion.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorZeroMemExpanion.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/balanceInputAddressTooBig.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/balanceInputAddressTooBig.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory2.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory2.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls1.json]
+[gw2] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAddTrunc.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls1.json]
+src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCaller.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCaller.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToNonZeroBalance_OOGRevert.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToNonZeroBalance_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_OOGRevert.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_OOGRevert.json]
+[gw3] [ 68%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToOneStorageKey_OOGRevert_Paris.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc29DiffPlaces.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToOneStorageKey_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToOneStorageKey_OOGRevert_Paris.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToOneStorageKey_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_OOGRevert.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToEmpty_OOGRevert_Paris.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToEmpty_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToNonZeroBalance_OOGRevert.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToNonZeroBalance_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToEmpty_OOGRevert_Paris.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToEmpty_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_OOGRevert.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToOneStorageKey_OOGRevert_Paris.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToOneStorageKey_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToOneStorageKey_OOGRevert_Paris.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToOneStorageKey_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToNonZeroBalance_OOGRevert.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToNonZeroBalance_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToNonZeroBalance_OOGRevert.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToNonZeroBalance_OOGRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToEmpty_OOGRevert_Paris.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToEmpty_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToEmpty_OOGRevert_Paris.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToEmpty_OOGRevert_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_staticcall.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_staticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_staticcall.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_staticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/tooLongReturnDataCopy.json]
+[gw5] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEBDiffPlaces.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAddTrunc.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_193.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_193.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_128.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/tooLongReturnDataCopy.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_call_value_fail_then_returndatasize.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_call_value_fail_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial.json]
+[gw3] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/revertRetDataSize.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_128.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_128.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc29DiffPlaces.json]
+[gw2] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/StackUnderFlowContractCreation.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/StackUnderFlowContractCreation.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOG.json]
+[gw6] [ 69%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallTheContractToCreateEmptyContract.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallTheContractToCreateEmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractAndCallItOOG.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractAndCallItOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractInInitCode.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractInInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallRecursiveContract.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallRecursiveContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateSuicideInInitcode.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_80.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateSuicideInInitcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateStopInInitcode.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateStopInInitcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasPrefundedContractCreation.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasPrefundedContractCreation.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateAutoSuicideContract.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_80.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateAutoSuicideContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_128.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasContractCreation.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasContractCreation.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractNoCash.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_64.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractNoCash.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateRandomInitCode.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateRandomInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOGBonusGas.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOGBonusGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest2.json]
+[gw5] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEBDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC8DiffPlaces.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest2.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwnerNew.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwnerNew.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwner.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_64.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_128.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_ownerIsNotOwner.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_ownerIsNotOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo0.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo0.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteUnderDailyLimit.json]
+[gw3] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/revertRetDataSize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_oog_after_deeper.json]
+[gw2] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_128.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteUnderDailyLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_96.json]
+[gw6] [ 70%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGas.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_oog_after_deeper.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_callcode.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletAddOwnerRemovePendingTransaction.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_callcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_outsize_then_create_successful_then_returndatasize.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_outsize_then_create_successful_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_delegatecall.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletAddOwnerRemovePendingTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimitNoData.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_delegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/create_callprecompile_returndatasize.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimitNoData.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_fromNotOwner.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/create_callprecompile_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_create_successful_then_returndatasize.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_fromNotOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionPartial.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_create_successful_then_returndatasize.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_overrun.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionPartial.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_overrun.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConfirm.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_0_0_following_successful_create.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_0_0_following_successful_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_revert_in_staticcall.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConfirm.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGasPartial.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_revert_in_staticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert_in_create.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_128.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert_in_create.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_ecrec_success_empty_then_returndatasize.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_ecrec_success_empty_then_returndatasize.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGasPartial.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_callcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwnerNoArgument.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_callcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/subcallReturnMoreThenExpected.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwnerNoArgument.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_mySelf.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/subcallReturnMoreThenExpected.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_bug.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_mySelf.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo1.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_bug.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_callcode.json]
+[gw6] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo1.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_toIsOwner.json]
+[gw2] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_128.json]
+[gw3] [ 71%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_callcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial_zero_read.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_toIsOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitMultiOwner.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial_zero_read.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_call.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitMultiOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitResetSpentToday.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_call.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_delegatecall.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_128.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitResetSpentToday.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionCorrect.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_96.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_delegatecall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_staticcall.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_staticcall.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_256.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionCorrect.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefaultWithOutValue.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefaultWithOutValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo2.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_256.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo2.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstruction.json]
+src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_96.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput1.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstruction.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerFalse.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput1.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContract.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerFalse.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwnerByNonOwner.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024OOG.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwnerByNonOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwnerAddMyself.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_96.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024BalanceTooLow.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwnerAddMyself.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeRequirementRemovePendingTransaction.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeRequirementRemovePendingTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionOOG.json]
+[gw2] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_insufficient_gas.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRevokeNothing.json]
+[gw3] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024BalanceTooLow.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallRecursiveBombPreCall.json]
+[gw6] [ 72%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRevokeNothing.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillToWallet.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillToWallet.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletRemoveOwnerRemovePendingTransaction.json]
+[gw2] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_insufficient_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_128.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletRemoveOwnerRemovePendingTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerTrue.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerTrue.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKill.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKill.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefault.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallRecursiveBombPreCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partial.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefault.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillNotByOwner.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partial.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callWithHighValueAndGasOOG.json]
+[gw2] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_96.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillNotByOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstruction.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callWithHighValueAndGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode2SelfCall.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode2SelfCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallcodeLoseGasOOG.json]
+[gw5] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC8DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1EDiffPlaces.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstruction.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionOOG.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwner.json]
+[gw2] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_points_with_one_g2_zero.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwner.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallcodeLoseGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeOutput3.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionPartial.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeOutput3.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput2.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionPartial.json]
+src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeOwnerRemovePendingTransaction.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput2.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallBasic.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallBasic.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallValueCheck.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeOwnerRemovePendingTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/labelsExample.json]
+[gw2] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_points_with_one_g2_zero.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_96.json]
+[gw3] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallValueCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024OOG.json]
+[gw6] [ 73%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/labelsExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/yulExample.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/yulExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/mergeTest.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/mergeTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/add11_yml.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_128.json]
+[gw3] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/add11_yml.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/basefeeExample.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/basefeeExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/indexesOmitExample.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/indexesOmitExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/add11.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/add11.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/solidityExample.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/solidityExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/invalidTr.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_128.json]
+[gw3] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/deleagateCallAfterValueTransfer.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/invalidTr.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/eip1559.json]
+[gw3] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/deleagateCallAfterValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallSenderCheck.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/eip1559.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/rangesExample.json]
+[gw3] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallSenderCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallOOGinCall.json]
+[gw3] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallOOGinCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallAndOOGatTxLevel.json]
+[gw3] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallAndOOGatTxLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partialFail.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_96.json]
+[gw3] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partialFail.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination2.json]
+[gw3] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackSizeLargerThan1024.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_1.json]
+[gw2] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_96.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/rangesExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stExample/accessListExample.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stExample/accessListExample.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/ExecuteCallThatAskMoreGasThenTransactionHasWithMemExpandingCalls.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/ExecuteCallThatAskMoreGasThenTransactionHasWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevelWithMemExpandingCalls.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevelWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/NewGasPriceForCodesWithMemExpandingCalls.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/NewGasPriceForCodesWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAndCallcodeConsumeMoreGasThenTransactionHasWithMemExpandingCalls.json]
+[gw6] [ 74%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAndCallcodeConsumeMoreGasThenTransactionHasWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevel2WithMemExpandingCalls.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevel2WithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CreateAndGasInsideCreateWithMemExpandingCalls.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CreateAndGasInsideCreateWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAskMoreGasOnDepth2ThenTransactionHasWithMemExpandingCalls.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAskMoreGasOnDepth2ThenTransactionHasWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/DelegateCallOnEIPWithMemExpandingCalls.json]
+[gw5] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1EDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEFDiffPlaces.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/DelegateCallOnEIPWithMemExpandingCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/OOGinReturn.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_96.json]
+[gw3] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackSizeLargerThan1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024PreCalls.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/OOGinReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContract.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContractOOGInitCode.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContractOOGInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContract.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaTransactionCost53000.json]
+[gw6] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaTransactionCost53000.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_2_Paris.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_96.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideMiddle.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode2SelfCall.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode2SelfCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMAfter.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideEnd.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideEnd.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGE.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE_valueTransfer.json]
+[gw3] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024PreCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxsNotEnoughGas.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE_valueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideMiddle.json]
+[gw3] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxsNotEnoughGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit2.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGE.json]
+[gw3] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partialFail.json]
+[gw2] [ 75%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partialFail.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValueAndGasOOG.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMBefore.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValueAndGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPreStore1NotEnoughGas.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_SuicideEnd.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPreStore1NotEnoughGas.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallLoseGasOOG.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideEnd.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallLoseGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValue.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMBefore.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideEnd.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3Fail.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContractWithValueTransfer.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3Fail.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitOOGforCREATE.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContractWithValueTransfer.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMBefore.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContract.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitOOGforCREATE.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput1.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContract.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput1.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMBefore.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_OOGE.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_calls.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackUnderflow.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackUnderflow.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024BalanceTooLow.json]
+[gw2] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_calls.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/multi_block_beacon_root_timestamp_calls.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024BalanceTooLow.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput2.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024BalanceTooLow.json]
+[gw5] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEFDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB1DiffPlaces.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024BalanceTooLow.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallRecursiveBombPreCall.json]
+[gw3] [ 76%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallRecursiveBombPreCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3Fail.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3Fail.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partial.json]
+[gw2] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/multi_block_beacon_root_timestamp_calls.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_transition.json]
+[gw2] [ 77%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_transition.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_selfdestruct.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partial.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination.json]
+[gw2] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_selfdestruct.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_equal_to_timestamp.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndOOGatTxLevel.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndOOGatTxLevel.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndGasOOG.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput1.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput1.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3.json]
+[gw2] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_equal_to_timestamp.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/tx_to_beacon_root_contract.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallcodeLoseGasOOG.json]
+[gw2] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/tx_to_beacon_root_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_deploy.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallcodeLoseGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partial.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partial.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxs.json]
+[gw2] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_deploy.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/calldata_lengths.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxs.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput2.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_NoCollision.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_NoCollision.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024OOG.json]
+[gw2] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/calldata_lengths.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/berlin/eip2930_access_list/access_list.json]
+[gw2] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/berlin/eip2930_access_list/access_list.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/multiple_withdrawals_same_address.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024OOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createFailBalanceTooLow.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createFailBalanceTooLow.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction2.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValue.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueOOGinCall.json]
+[gw3] [ 77%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueOOGinCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorendowmentTooHigh.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorendowmentTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_ExampleContract.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_ExampleContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partialFail.json]
+[gw5] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB1DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFBDiffPlaces.json]
+[gw3] [ 78%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partialFail.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/transactionIntinsicBug_Paris.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/transactionIntinsicBug_Paris.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowFeeCap.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowFeeCap.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowGasLimit.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowGasLimit.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/tipTooHigh.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/tipTooHigh.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowGasPriceOldTypes.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[stEIP1559/lowGasPriceOldTypes.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_during_fork.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_during_fork.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_before_fork.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_before_fork.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_two_different_transactions.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_two_different_transactions.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_pre_existing.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_pre_existing.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode_create_tx.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode_create_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/self_destructing_initcode.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_same_block_different_tx.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_same_block_different_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/recreate_self_destructed_contract_different_txs.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/recreate_self_destructed_contract_different_txs.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_multi_tx.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision_multi_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_tx.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_deployment_tx.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip1153_tstore/tstore_clear_after_deployment_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_negative_excess_blob_gas.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_negative_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_post_fork_block_without_blob_fields.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_post_fork_block_without_blob_fields.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_zero_excess_blob_gas_in_header.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_zero_excess_blob_gas_in_header.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_single_tx.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_single_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/precompile_during_fork.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/precompile_during_fork.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_target_blobs_increase_from_zero.json]
+[gw3] [ 78%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_target_blobs_increase_from_zero.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blob_type_tx_pre_fork.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blob_type_tx_pre_fork.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/precompile_before_fork.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/precompile_before_fork.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/fork_transition_excess_blob_gas.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/fork_transition_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_tx_contract_creation.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_tx_contract_creation.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_above_target_change.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_above_target_change.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blob_gas_subtraction_tx.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blob_gas_subtraction_tx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_max_fee_per_blob_gas.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_max_fee_per_blob_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx_combinations.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx_combinations.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_multiple_txs_in_block.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_multiple_txs_in_block.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_change.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_change.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_block_blob_count.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_block_blob_count.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_normal_gas.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_normal_gas.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_pre_fork_block_with_blob_fields.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_pre_fork_block_with_blob_fields.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_gas_used_in_header.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_gas_used_in_header.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_non_multiple_excess_blob_gas.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_non_multiple_excess_blob_gas.json]
+[gw2] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/multiple_withdrawals_same_address.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/reject_valid_full_blob_in_block_rlp.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/reject_valid_full_blob_in_block_rlp.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_blob_count.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_blob_count.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/balance_within_block.json]
+[gw2] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/balance_within_block.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/self_destructing_account.json]
+[gw2] [ 79%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/self_destructing_account.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/newly_created_contract.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_multiple_txs.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_multiple_txs.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_transition.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_transition.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/shanghai/eip4895_withdrawals/no_evm_execution.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/shanghai/eip4895_withdrawals/no_evm_execution.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/frontier/opcodes/double_kill.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/frontier/opcodes/double_kill.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/paris/security/tx_selfdestruct_balance_bug.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/paris/security/tx_selfdestruct_balance_bug.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/constantinople/eip1014_create2/recreate.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Pyspecs/constantinople/eip1014_create2/recreate.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/createBlobhashTx.json]
+[gw3] [ 79%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/createBlobhashTx.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds7.json]
+[gw3] [ 80%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds7.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/wrongBlobhashVersion.json]
+[gw3] [ 80%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/wrongBlobhashVersion.json]
+src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/emptyBlobhashList.json]
+[gw3] [ 80%] SKIPPED src/tests/integration/test_conformance.py::test_rest_bchain[Cancun/stEIP4844-blobtransactions/emptyBlobhashList.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/newly_created_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/large_amount.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover3.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/large_amount.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/many_withdrawals.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter2.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callBasic.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callBasic.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd2.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3.json]
+[gw3] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity2.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/many_withdrawals.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_contract.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_contract.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_tx.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/withdrawing_to_precompiles.json]
+[gw5] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFBDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCBDiffPlaces.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/withdrawing_to_precompiles.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/zero_amount.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/zero_amount.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/no_evm_execution.json]
+[gw2] [ 80%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/no_evm_execution.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_gas_usage.json]
+[gw5] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCBDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCFDiffPlaces.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_gas_usage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_call_out_of_gas.json]
+[gw2] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_call_out_of_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/create_opcode_initcode.json]
+[gw5] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCFDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF9DiffPlaces.json]
+[gw7] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/15_tstoreCannotBeDosd.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageReset.json]
+[gw7] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageReset.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/21_tstoreCannotBeDosdOOO.json]
+[gw5] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc23DiffPlaces.json]
+[gw5] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc23DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBFDiffPlaces.json]
+[gw4] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_2.json]
+[gw4] [ 80%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide0.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_3.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBFDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0CDiffPlaces.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas18.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas18.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverH_prefixed0.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverH_prefixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CalltoReturn2.json]
+[gw4] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CalltoReturn2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_3.json]
+[gw2] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/create_opcode_initcode.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/contract_creating_tx.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0CDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB9DiffPlaces.json]
+[gw2] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/contract_creating_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/gas_usage.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE7DiffPlaces.json]
+[gw6] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_2_Paris.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE7DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD6DiffPlaces.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD6DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc24DiffPlaces.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc24DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4FDiffPlaces.json]
+[gw5] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4FDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5DDiffPlaces.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallStoreClearsOOG.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallStoreClearsOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RawCallGasAsk.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RawCallGasAsk.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes3.json]
+[gw2] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/gas_usage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contract_during_call_contexts.json]
+[gw2] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contract_during_call_contexts.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contracts.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_OOGE_2.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_2.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle2.json]
+[gw3] [ 81%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromTransaction.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToNameRegistrator0.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToNameRegistrator0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert2.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contracts.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/dup.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5DDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA9DiffPlaces.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore2.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_BoundsOOG.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_BoundsOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentitiy_1.json]
+[gw3] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentitiy_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Return50000_2.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA9DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB5DiffPlaces.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCCDiffPlaces.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/dup.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/value_transfer_gas_calculation.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/value_transfer_gas_calculation.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/double_kill.json]
+[gw2] [ 82%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/double_kill.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/cover_revert.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/cover_revert.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/all_opcodes.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCCDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEEDiffPlaces.json]
+[gw0] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/intrinsic.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/senderBalance.json]
+[gw0] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/senderBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/gasPriceDiffPlaces.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE5DiffPlaces.json]
+[gw0] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/gasPriceDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFundsOldTypes.json]
+[gw0] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFundsOldTypes.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFunds.json]
+[gw0] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFunds.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/baseFeeDiffPlaces.json]
+[gw5] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE5DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB4DiffPlaces.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/all_opcodes.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/istanbul/eip1344_chainid/chainid.json]
+[gw6] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/static_Call50000_sha256.json]
+[gw2] [ 82%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/istanbul/eip1344_chainid/chainid.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/paris/security/tx_selfdestruct_balance_bug.json]
+[gw2] [ 82%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/paris/security/tx_selfdestruct_balance_bug.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/yul/yul.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/yul/yul.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/coverage/coverage.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/baseFeeDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowGasPriceOldTypes.json]
+[gw0] [ 83%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowGasPriceOldTypes.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+32.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-1.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/coverage/coverage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/constantinople/eip1014_create2/create2_return_data.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu2.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/extcodecopy_dejavu.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/extcodecopy_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32b_singleByte.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32b_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1025.json]
+[gw5] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB4DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcACDiffPlaces.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1025.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstore_dejavu.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstore_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/bufferSrcOffset.json]
+[gw5] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcACDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD3DiffPlaces.json]
+[gw5] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD3DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFEDiffPlaces.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Return50000_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_emptyMem.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+[gw3] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1MB1024Calldepth.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/constantinople/eip1014_create2/create2_return_data.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/constantinople/eip1014_create2/recreate.json]
+[gw2] [ 83%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/constantinople/eip1014_create2/recreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192_london.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192_london.json]
+src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192.json]
+src/tests/integration/test_conformance.py::test_bchain[stBugs/returndatacopyPythonBug_Tue_03_48_41-1432.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBugs/returndatacopyPythonBug_Tue_03_48_41-1432.json]
+src/tests/integration/test_conformance.py::test_bchain[stBugs/staticcall_createfails.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBugs/staticcall_createfails.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_128.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_128.json]
+[gw2] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_80_Paris.json]
+[gw0] [ 83%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/bufferSrcOffset.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+31.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-33.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1024.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_80_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data_insufficient_gas.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data_insufficient_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_96.json]
+[gw5] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFEDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD4DiffPlaces.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_96.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_96.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1024.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_128.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_128.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_128.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-33.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log2_dejavu.json]
+[gw0] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log2_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/oog.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_96.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_96.json]
+[gw5] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD4DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4BDiffPlaces.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus_again.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus_again.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_96.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_128.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_128.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1MB1024Calldepth.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_96.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_emptyMem.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit_from_call.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit_from_call.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE.json]
+[gw2] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAdd.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLengthWrongV.json]
+[gw3] [ 84%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLengthWrongV.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecallcode_111_SuicideEnd.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecallcode_111_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_1.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1_nonzeroValue.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas17.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas17.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeTooHigh.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideEnd.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput2.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemStartTooHigh.json]
+[gw3] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemStartTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_ecrec.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/oog.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1024.json]
+[gw5] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4BDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc49DiffPlaces.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAdd.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_96.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_128.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1024.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload_dejavu.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-31.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+1.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload8bitBound.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_616_28000_96.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload8bitBound.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codeCopyOffset.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codeCopyOffset.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload16bitBound.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload16bitBound.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+33.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+33.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memReturn.json]
+[gw2] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_616_28000_96.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_80.json]
+[gw0] [ 85%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/sha3_dejavu.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/sha3_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+33.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+1.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1025.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g1_zero.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g1_zero.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_128.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_128.json]
+src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_80.json]
+[gw2] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_80.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1025.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-32.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+32.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memCopySelf.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memCopySelf.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+1.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log1_dejavu.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log1_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-31.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1023.json]
+[gw5] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc49DiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFCDiffPlaces.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1023.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/callDataCopyOffset.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/callDataCopyOffset.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+32.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem33b_singleByte.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem33b_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-32.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-32.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem31b_singleByte.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem31b_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem0b_singleByte.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem0b_singleByte.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-1.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstroe8_dejavu.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstroe8_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-1.json]
+[gw0] [ 86%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+33.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1025.json]
+[gw5] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFCDiffPlaces.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_decreasing_blob_gas_costs.json]
+[gw5] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_decreasing_blob_gas_costs.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_value_opcode.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1025.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-31.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+31.json]
+[gw5] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_value_opcode.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_gas_subtraction_tx.json]
+[gw5] [ 87%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_gas_subtraction_tx.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+32.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_max_fee_per_blob_gas.json]
+[gw5] [ 87%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_max_fee_per_blob_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx_combinations.json]
+[gw5] [ 87%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx_combinations.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/tx_entry_point.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+32.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log3_dejavu.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log3_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-1.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-33.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/buffer.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_rip160.json]
+[gw2] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_rip160.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000.json]
+[gw6] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/static_Call50000_sha256.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_Paris.json]
+[gw3] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_ecrec.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls0.json]
+[gw3] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_1_nonzeroValue.json]
+[gw3] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_1_nonzeroValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3.json]
+[gw3] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_2.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/buffer.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+31.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+31.json]
+[gw3] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert.json]
+[gw3] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd2.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+31.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-32.json]
+[gw0] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-32.json]
+[gw3] [ 87%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+1.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+1.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1023.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLength.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLength.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAskMoreGasOnDepth2ThenTransactionHas.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAskMoreGasOnDepth2ThenTransactionHas.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes5.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1023.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-33.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-33.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log4_dejavu.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log4_dejavu.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu2.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1023.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes5.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle2.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit2.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideMiddle.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideMiddle.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_2.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1023.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-31.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-31.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractInteraction.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractInteraction.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestOverflow.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestOverflow.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallRecursiveMethods.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallRecursiveMethods.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStoreGasPrices.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStoreGasPrices.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestKeywords.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestKeywords.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/SelfDestruct.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE.json]
+[gw0] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/SelfDestruct.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractSuicide.json]
+[gw3] [ 88%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcode_checkPC.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractSuicide.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStructuresAndVariabless.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcode_checkPC.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter2.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStructuresAndVariabless.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContractsCreate4Contracts.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContractsCreate4Contracts.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/AmbiguousMethod.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/AmbiguousMethod.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallInfiniteLoop.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter2.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToNonNonZeroBalance.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToEmpty_Paris.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToEmpty_Paris.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToNonNonZeroBalance.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallInfiniteLoop.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CreateContractFromMethod.json]
+[gw3] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowPUSH.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CreateContractFromMethod.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ContractInheritance.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ContractInheritance.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ByZero.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ByZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContracts.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContracts.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallLowLevelCreatesSolidity.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallLowLevelCreatesSolidity.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestCryptographicFunctions.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestCryptographicFunctions.json]
+src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestBlockAndTransactionProperties.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestBlockAndTransactionProperties.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTestsParis.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTestsParis.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTargetRangeLongerThanCodeTests.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTargetRangeLongerThanCodeTests.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds2.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds.json]
+[gw2] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DUP_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000_2.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DUP_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds.json]
+[gw0] [ 89%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/POP_Bounds.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/POP_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMPI_Bounds.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMPI_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds3.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds3.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds2.json]
+[gw5] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/tx_entry_point.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/point_evaluation_precompile_gas_usage.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound2.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound2.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/RETURN_Bounds.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/RETURN_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionToEmpty2.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionToEmpty2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_1wei.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_1wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_0wei.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_0wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorage.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_empty000CreateinInitCode_Transaction.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_empty000CreateinInitCode_Transaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_FirstByte_loop.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_FirstByte_loop.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionCallData.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionCallData.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterMaxCodesize.json]
+[gw3] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowPUSH.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1.json]
+[gw3] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1PUSH.json]
+[gw4] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_3.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd2.json]
+[gw4] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE_2.json]
+[gw4] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callChangeRevert.json]
+[gw4] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callChangeRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE.json]
+[gw4] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_MaxTopic.json]
+[gw4] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_MaxTopic.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE.json]
+[gw4] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeZero.json]
+[gw4] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeZero.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000.json]
+[gw0] [ 90%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterMaxCodesize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInit_Tr.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInit_Tr.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractRETURNBigOffset.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractRETURNBigOffset.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateEContractInInit_Tr.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateEContractInInit_Tr.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createFailResult.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createFailResult.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContract.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCode.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndataSize.json]
+[gw6] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_Paris.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndataSize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButNonce.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSSTOREDuringInit.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSSTOREDuringInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionResults.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionResults.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createLargeResult.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createLargeResult.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024PreCalls.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024PreCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToEmptyContract.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToEmptyContract.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallEmptycontract.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallEmptycontract.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeWithHighValueAndGasOOG.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeWithHighValueAndGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallLoseGasOOG.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallLoseGasOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContractOOG.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContractOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInDelegateCall.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInDelegateCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCallOOG.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCallOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeReturn.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/stateRevert.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/stateRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_nonce.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_nonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepth2.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepth2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG2.json]
+[gw2] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Callcode50000.json]
+[gw0] [ 91%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeMultipleSubCalls.json]
+[gw3] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1PUSH.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/shallowStack.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeMultipleSubCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOnEmptyStack.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOnEmptyStack.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCall_Paris.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCall_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopDelegateCallsDepthThenRevert.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopDelegateCallsDepthThenRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsThenRevert.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsThenRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_noncestorage.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_noncestorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCreate.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCalls.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInStaticCall.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInStaticCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInInit.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_Paris.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCallsOnNonEmptyReturnData.json]
+[gw3] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/shallowStack.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stacksanitySWAP.json]
+[gw3] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stacksanitySWAP.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCallsOnNonEmptyReturnData.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowDUP.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert2.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert2.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/costRevert.json]
+[gw3] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowDUP.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/underflowTest.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/costRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/NashatyrevSuicideRevert.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/NashatyrevSuicideRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeWithBigOutputInInit.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeWithBigOutputInInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_2.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_prefix0.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_prefix0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE_2.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE_2.json]
+[gw0] [ 92%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_makeMoney.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_makeMoney.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb1.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_2.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd2.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_5.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_5.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToStaticOpCodeCheck.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToStaticOpCodeCheck.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE2.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3Fail.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3Fail.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_0input.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_0input.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckCallCostOOG.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckCallCostOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011.json]
+[gw0] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_single_tx.json]
+[gw0] [ 93%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_single_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/precompile_during_fork.json]
+[gw0] [ 93%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/precompile_during_fork.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_target_blobs_increase_from_zero.json]
+[gw0] [ 93%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_target_blobs_increase_from_zero.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx_pre_fund_tx.json]
+[gw2] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Callcode50000.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata2.json]
+[gw2] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContract_ThenCALLToNonExistentAcc.json]
+[gw2] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContract_ThenCALLToNonExistentAcc.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CodeInConstructor.json]
+[gw2] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CodeInConstructor.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromCallRefunds.json]
+[gw2] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromCallRefunds.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButCode.json]
+[gw2] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButCode.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata.json]
+[gw2] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateAddressWarmAfterFail.json]
+[gw2] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateAddressWarmAfterFail.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_RefundEF.json]
+[gw2] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_RefundEF.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_1wei.json]
+[gw2] [ 93%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_1wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_AcreateB_BSuicide_BStore.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_AcreateB_BSuicide_BStore.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata3.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata3.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithBalance.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValueToItself.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValueToItself.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmpty2.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmpty2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert2.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert2.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInitOOG_Tr.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInitOOG_Tr.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonceMinus1.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonceMinus1.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionRefundEF.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionRefundEF.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateResults.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx_pre_fund_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_calldata_opcodes.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_calldata_opcodes.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_type_tx_pre_fork.json]
+[gw0] [ 94%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_type_tx_pre_fork.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx.json]
+[gw0] [ 94%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/insufficient_balance_blob_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/precompile_before_fork.json]
+[gw0] [ 94%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/precompile_before_fork.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/fork_transition_excess_blob_gas.json]
+[gw0] [ 94%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/fork_transition_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_increasing_blob_gas_costs.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_increasing_blob_gas_costs.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_scenarios.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateResults.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromEOARefunds.json]
+[gw0] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_scenarios.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_tx_contract_creation.json]
+[gw0] [ 94%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_tx_contract_creation.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_above_target_change.json]
+[gw0] [ 94%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_above_target_change.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_excess_blob_gas_calculation.json]
+[gw6] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_Paris.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromEOARefunds.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_CallData.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_CallData.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonce.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionHighNonce.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionHighNonce.json]
+src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValue.json]
+[gw2] [ 94%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToNonNonZeroBalance.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToNonNonZeroBalance.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToEmpty_Paris.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToOneStorageKey_Paris.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToOneStorageKey_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE.json]
+[gw0] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_excess_blob_gas_calculation.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToEmpty_Paris.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToEmpty_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/reject_valid_full_blob_in_block_rlp.json]
+[gw2] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/reject_valid_full_blob_in_block_rlp.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_blob_count.json]
+[gw2] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_tx_blob_count.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_multiple_txs.json]
+[gw2] [ 95%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_hash_versioning_multiple_txs.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_gas_cost.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_gas_cost.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_on_empty_memory.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_on_empty_memory.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_call_stack_levels.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_call_stack_levels.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_huge_memory_expansion.json]
+[gw7] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/21_tstoreCannotBeDosdOOO.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_expansion_cost.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_huge_memory_expansion.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_memory_expansion.json]
+[gw7] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_expansion_cost.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_copy_cost.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_memory_expansion.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_create_stack_levels.json]
+[gw2] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_create_stack_levels.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/valid_mcopy_operations.json]
+[gw7] [ 95%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_copy_cost.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY.json]
+[gw2] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/valid_mcopy_operations.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_timestamps.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_opcodes.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_opcodes.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeOOGInvalidSize.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeOOGInvalidSize.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/createCodeSizeLimit.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/createCodeSizeLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeInit.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeInit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/create2CodeSizeLimit.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/create2CodeSizeLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeValid.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeValid.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcode.json]
+[gw7] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY.json]
+src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_hash.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcode.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/PythonRevertTestTue201814-1430.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/PythonRevertTestTue201814-1430.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeDirectCall.json]
+[gw2] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_timestamps.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/invalid_beacon_root_calldata_value.json]
+[gw7] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_hash.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGasFail.json]
+[gw2] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/invalid_beacon_root_calldata_value.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/no_beacon_root_contract_at_transition.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeDirectCall.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert3_Paris.json]
+[gw2] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/no_beacon_root_contract_at_transition.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert3_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateOOG.json]
+[gw7] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGasFail.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGas.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateOOG.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateAddressCollision.json]
+[gw2] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore.json]
+[gw7] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGas.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0.json]
+[gw2] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeTooHigh.json]
+[gw2] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeTooHigh.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd2.json]
+[gw2] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_postfixed0.json]
+[gw0] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateAddressCollision.json]
+[gw2] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_postfixed0.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert3.json]
+[gw2] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow2.json]
+[gw7] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas2.json]
+[gw7] [ 96%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas2.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/createInitCodeSizeLimit.json]
+[gw0] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert3.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore.json]
+[gw0] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_negative_excess_blob_gas.json]
+[gw0] [ 97%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_negative_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_post_fork_block_without_blob_fields.json]
+[gw0] [ 97%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_post_fork_block_without_blob_fields.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas.json]
+[gw0] [ 97%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_inputs.json]
+[gw2] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideNoStorage.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/createInitCodeSizeLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/create2InitCodeSizeLimit.json]
+[gw2] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideNoStorage.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit.json]
+[gw2] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/create2InitCodeSizeLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/creationTxInitCodeSizeLimit.json]
+[gw2] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle.json]
+[gw2] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle.json]
+[gw4] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_completeReturnValue.json]
+[gw2] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_completeReturnValue.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity2.json]
+[gw4] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGE.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call10.json]
+[gw4] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call10.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_2.json]
+[gw4] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/creationTxInitCodeSizeLimit.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToNonNonZeroBalance.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToNonNonZeroBalance.json]
+[gw7] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToNonNonZeroBalance.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_gas_used_in_header.json]
+[gw7] [ 97%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_blob_gas_used_in_header.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_non_multiple_excess_blob_gas.json]
+[gw7] [ 97%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_non_multiple_excess_blob_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/external_vectors.json]
+[gw2] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity2.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000.json]
+[gw2] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity.json]
+[gw3] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/underflowTest.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1DUP.json]
+[gw2] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Shnghai.json]
+[gw2] [ 97%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Shnghai.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_sha256.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1DUP.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflow.json]
+[gw0] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_inputs.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_zero_excess_blob_gas_in_header.json]
+[gw0] [ 98%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_zero_excess_blob_gas_in_header.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_gasprice_opcode.json]
+[gw0] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_gasprice_opcode.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_opcode_contexts.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflow.json]
+src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowSWAP.json]
+[gw0] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_opcode_contexts.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_Paris.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowSWAP.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Byzantium.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Byzantium.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/QuadraticComplexitySolidity_CallDataCopy.json]
+[gw2] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_sha256.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_2.json]
+[gw6] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_Paris.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/QuadraticComplexitySolidity_CallDataCopy.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_1.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_3.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd2.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd2.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore.json]
+[gw4] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_1.json]
+[gw2] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_2.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_ecrec.json]
+[gw2] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_ecrec.json]
+src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call1MB1024Calldepth.json]
+[gw2] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call1MB1024Calldepth.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/call_opcode_types.json]
+[gw0] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/CALLBlake2f_MaxRounds.json]
+[gw6] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_2_Paris.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_3.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_reentrancy.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_reentrancy.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_calls.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_calls.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/gas_usage.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/gas_usage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_sstore.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_sstore.json]
+src/tests/integration/test_conformance.py::test_bchain[stAttackTest/CrashingTransaction.json]
+[gw3] [ 98%] PASSED src/tests/integration/test_conformance.py::test_bchain[stAttackTest/CrashingTransaction.json]
+src/tests/integration/test_conformance.py::test_bchain[stAttackTest/ContractCreationSpam.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_1.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover80.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover80.json]
+src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_Bounds.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_Bounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_Paris.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stAttackTest/ContractCreationSpam.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_other_after_tstore.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_other_after_tstore.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore_is_zero.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore_is_zero.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json]
+[gw3] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_static_excess_blob_gas_from_zero_on_blobs_above_target.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_invalid_blob_index.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_invalid_blob_index.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_change.json]
+[gw3] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_excess_blob_gas_change.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_block_blob_count.json]
+[gw3] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_block_blob_count.json]
+src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreate.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreate.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_works.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_works.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_pre_fork_block_with_blob_fields.json]
+[gw3] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_pre_fork_block_with_blob_fields.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_2_Paris.json]
+[gw6] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_2_Paris.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_2_Paris.json]
+[gw5] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/point_evaluation_precompile_gas_usage.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_multiple_txs_in_block.json]
+[gw5] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_multiple_txs_in_block.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_2_Paris.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_blob_tx_combinations.json]
+[gw3] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_blob_tx_combinations.json]
+[gw6] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_2_Paris.json]
+[gw4] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_2_Paris.json]
+[gw2] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/call_opcode_types.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_normal_gas.json]
+[gw2] [ 99%] SKIPPED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_normal_gas.json]
+[gw1] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/run_until_out_of_gas.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_call.json]
+[gw1] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_call.json]
+[gw0] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/CALLBlake2f_MaxRounds.json]
+src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreateReturnValue.json]
+[gw0] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreateReturnValue.json]
+[gw7] [ 99%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/external_vectors.json]
+src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_inputs.json]
+[gw7] [100%] PASSED src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_inputs.json]
+
+============================== slowest durations ===============================
+147.73s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/external_vectors.json]
+70.20s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/run_until_out_of_gas.json]
+29.56s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/15_tstoreCannotBeDosd.json]
+26.83s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/21_tstoreCannotBeDosdOOO.json]
+26.08s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/CALLBlake2f_MaxRounds.json]
+24.41s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_2.json]
+23.60s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/point_evaluation_precompile_gas_usage.json]
+20.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_3.json]
+14.35s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/intrinsic.json]
+11.64s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/call_opcode_types.json]
+8.50s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/static_Call50000_sha256.json]
+6.87s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_AttackwithJump.json]
+6.62s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_rip160.json]
+6.60s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/JUMPDEST_Attack.json]
+6.51s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000.json]
+6.15s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/tx_entry_point.json]
+6.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsThenRevert.json]
+6.00s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_ecrec.json]
+5.86s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity2.json]
+5.84s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_Paris.json]
+5.81s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000_identity.json]
+5.39s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_2_Paris.json]
+5.22s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_2_Paris.json]
+5.13s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial01_Paris.json]
+5.00s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial21_Paris.json]
+4.78s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/precompsEIP2929Cancun.json]
+4.59s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000_2.json]
+4.53s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/underflowTest.json]
+4.53s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_Paris.json]
+4.47s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/buffer.json]
+4.28s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Return50000.json]
+4.25s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_2_Paris.json]
+4.17s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial20_2_Paris.json]
+4.17s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_Paris.json]
+4.15s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Return50000_2.json]
+4.13s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial11_Paris.json]
+4.12s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_2.json]
+4.07s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial00_2_Paris.json]
+4.00s call src/tests/integration/test_conformance.py::test_bchain[stTimeConsuming/sstore_combinations_initial10_2_Paris.json]
+3.99s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_3.json]
+3.25s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call50000bytesContract50_1.json]
+3.18s call src/tests/integration/test_conformance.py::test_vm[vmPerformance/performanceTester.json]
+3.15s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/idPrecomps.json]
+2.73s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterMaxCodesize.json]
+2.70s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/gas_usage.json]
+2.51s call src/tests/integration/test_conformance.py::test_bchain[stAttackTest/ContractCreationSpam.json]
+2.38s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowPUSH.json]
+2.27s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000.json]
+2.21s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Callcode50000.json]
+2.05s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1PUSH.json]
+1.92s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/create_opcode_initcode.json]
+1.74s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_inputs.json]
+1.71s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/QuadraticComplexitySolidity_CallDataCopy.json]
+1.69s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexp.json]
+1.63s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpToPush.json]
+1.57s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/clearReturnBuffer.json]
+1.55s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd2.json]
+1.54s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/dup.json]
+1.52s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_inputs.json]
+1.50s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1MB1024Calldepth.json]
+1.48s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/byzantium/eip198_modexp_precompile/modexp.json]
+1.47s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/invalid_inputs.json]
+1.44s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/constantinople/eip1014_create2/create2_return_data.json]
+1.41s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/bufferSrcOffset.json]
+1.37s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCost.json]
+1.21s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/divByZero.json]
+1.20s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostBerlin.json]
+1.20s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/Opcodes_TransactionInit.json]
+1.16s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/all_opcodes.json]
+1.11s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx_pre_fund_tx.json]
+1.09s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/modexpTests.json]
+1.00s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/sufficient_balance_blob_tx.json]
+0.97s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouchExactOOG_Paris.json]
+0.85s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidAddr.json]
+0.82s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_sha256.json]
+0.82s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD4DiffPlaces.json]
+0.80s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemory.json]
+0.80s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCEDiffPlaces.json]
+0.79s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEADiffPlaces.json]
+0.79s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/oog.json]
+0.77s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1FDiffPlaces.json]
+0.76s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc49DiffPlaces.json]
+0.76s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/variedContext.json]
+0.76s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD9DiffPlaces.json]
+0.76s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE9DiffPlaces.json]
+0.73s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2CDiffPlaces.json]
+0.72s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4EDiffPlaces.json]
+0.71s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFEDiffPlaces.json]
+0.69s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBEDiffPlaces.json]
+0.68s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB3DiffPlaces.json]
+0.68s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDDDiffPlaces.json]
+0.67s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA5DiffPlaces.json]
+0.66s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5EDiffPlaces.json]
+0.66s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE6DiffPlaces.json]
+0.65s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCADiffPlaces.json]
+0.65s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostMemSeg.json]
+0.65s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB7DiffPlaces.json]
+0.65s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE8DiffPlaces.json]
+0.65s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5CDiffPlaces.json]
+0.65s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/diffPlaces.json]
+0.65s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD8DiffPlaces.json]
+0.64s call src/tests/integration/test_conformance.py::test_vm[vmTests/push.json]
+0.64s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2EDiffPlaces.json]
+0.63s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc25DiffPlaces.json]
+0.62s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC7DiffPlaces.json]
+0.62s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD7DiffPlaces.json]
+0.62s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc24DiffPlaces.json]
+0.62s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAEDiffPlaces.json]
+0.62s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD5DiffPlaces.json]
+0.62s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4DDiffPlaces.json]
+0.62s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB8DiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2BDiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA9DiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE2DiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD0DiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2ADiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEFDiffPlaces.json]
+0.61s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2DDiffPlaces.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/shallowStack.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC0DiffPlaces.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0DDiffPlaces.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcACDiffPlaces.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF7DiffPlaces.json]
+0.60s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCFDiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFBDiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/costRevert.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB6DiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC8DiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBDDiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE1DiffPlaces.json]
+0.59s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDEDiffPlaces.json]
+0.58s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4CDiffPlaces.json]
+0.58s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB2DiffPlaces.json]
+0.58s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE0DiffPlaces.json]
+0.58s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE3DiffPlaces.json]
+0.58s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0FDiffPlaces.json]
+0.57s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCDDiffPlaces.json]
+0.57s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC5DiffPlaces.json]
+0.57s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/storageCosts.json]
+0.56s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc2FDiffPlaces.json]
+0.56s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc26DiffPlaces.json]
+0.56s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929.json]
+0.56s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1.json]
+0.55s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcFCDiffPlaces.json]
+0.55s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF8DiffPlaces.json]
+0.55s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc27DiffPlaces.json]
+0.54s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4FDiffPlaces.json]
+0.54s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4BDiffPlaces.json]
+0.54s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5DDiffPlaces.json]
+0.54s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA7DiffPlaces.json]
+0.54s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2Recursive.json]
+0.53s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDCDiffPlaces.json]
+0.53s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc28DiffPlaces.json]
+0.53s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC6DiffPlaces.json]
+0.53s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcABDiffPlaces.json]
+0.53s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEDDiffPlaces.json]
+0.53s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAADiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0EDiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD6DiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call20KbytesContract50_1.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc1EDiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBADiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA6DiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcECDiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDADiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc29DiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB0DiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB5DiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc5FDiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF6DiffPlaces.json]
+0.52s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDBDiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/invalidDiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcAFDiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD2DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEBDiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcA8DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc22DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC4DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE7DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD3DiffPlaces.json]
+0.51s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBFDiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB1DiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE5DiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC2DiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC3DiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCBDiffPlaces.json]
+0.50s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc21DiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcDFDiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/gasPriceDiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB4DiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBCDiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc23DiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcF9DiffPlaces.json]
+0.49s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc4ADiffPlaces.json]
+0.48s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflow.json]
+0.48s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity2.json]
+0.48s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/baseFeeDiffPlaces.json]
+0.48s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcBBDiffPlaces.json]
+0.47s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcCCDiffPlaces.json]
+0.46s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcD1DiffPlaces.json]
+0.46s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_identity.json]
+0.45s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC9DiffPlaces.json]
+0.45s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcEEDiffPlaces.json]
+0.45s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jumpi.json]
+0.45s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_ecrec.json]
+0.45s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcC1DiffPlaces.json]
+0.44s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcB9DiffPlaces.json]
+0.44s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAdd.json]
+0.44s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_copy_cost.json]
+0.44s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opc0CDiffPlaces.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcADDiffPlaces.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLBlake2f.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEBlake2f.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/addressOpcodes.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/opcE4DiffPlaces.json]
+0.43s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowDUP.json]
+0.42s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/withdrawing_to_precompiles.json]
+0.40s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/revertRetDataSize.json]
+0.40s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowM1DUP.json]
+0.38s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/many_withdrawals.json]
+0.38s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024PreCalls.json]
+0.38s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_pre_existing_contract_to_new_contract.json]
+0.37s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3860_initcode/contract_creating_tx.json]
+0.37s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeMultipleSubCalls.json]
+0.37s call src/tests/integration/test_conformance.py::test_vm[vmTests/calldatasize.json]
+0.35s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/subcall.json]
+0.34s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointAddTrunc.json]
+0.34s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pointMulAdd.json]
+0.33s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromCallRefunds.json]
+0.33s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/pairingTest.json]
+0.32s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/blake2B.json]
+0.32s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/valid_blob_tx_combinations.json]
+0.32s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1024.json]
+0.32s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverWeirdV.json]
+0.32s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_gas_usage.json]
+0.31s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGFromCallRefunds.json]
+0.29s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateAddressWarmAfterFail.json]
+0.29s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageOK.json]
+0.28s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/reentrancy_selfdestruct_revert.json]
+0.28s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1024.json]
+0.28s call src/tests/integration/test_conformance.py::test_bchain[stShift/shiftCombinations.json]
+0.28s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1024.json]
+0.28s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1023.json]
+0.28s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_memory_expansion.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1023.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/transStorageReset.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush31_1025.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackSizeLargerThan1024.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitPush32_1025.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter2.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls2.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoY.json]
+0.27s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tstore_reentrancy.json]
+0.26s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_128.json]
+0.26s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1025.json]
+0.26s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/stackLimitGas_1023.json]
+0.26s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024PreCalls.json]
+0.26s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0toX.json]
+0.25s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_excess_blob_gas_calculation.json]
+0.25s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/addmod.json]
+0.24s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes5.json]
+0.24s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount.json]
+0.24s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sdiv.json]
+0.24s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateResults.json]
+0.23s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_3.json]
+0.23s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceDelegatecall.json]
+0.23s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mulmod.json]
+0.23s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/operationDiffGas.json]
+0.22s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate.json]
+0.22s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes3.json]
+0.22s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoX.json]
+0.22s call src/tests/integration/test_conformance.py::test_vm[vmTests/swap.json]
+0.21s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/dynamic_create2_selfdestruct_collision.json]
+0.21s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/tooLongReturnDataCopy.json]
+0.21s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_gasLeft.json]
+0.21s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/valid_mcopy_operations.json]
+0.20s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0.json]
+0.20s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_gas_cost.json]
+0.20s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/signextend.json]
+0.20s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0to0to0.json]
+0.20s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/create_selfdestruct_same_tx_increased_nonce.json]
+0.20s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Suicide.json]
+0.20s call src/tests/integration/test_conformance.py::test_vm[vmTests/dup.json]
+0.19s call src/tests/integration/test_conformance.py::test_vm[vmTests/sha3.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGFromEOARefunds.json]
+0.19s call src/tests/integration/test_conformance.py::test_vm[vmLogTest/log4.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYto0.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_expansion_cost.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest458.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toX.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXtoY.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoZ.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/multiple_withdrawals_same_address.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoXto0.json]
+0.19s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0to0.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toXto0.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoX.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/multi_block_beacon_root_timestamp_calls.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stExample/rangesExample.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoY.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXtoY.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toX.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_timestamps.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contracts.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoYtoX.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_2.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0toY.json]
+0.18s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_0toXto0toX.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_reentrancy.json]
+0.17s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_1.json]
+0.17s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/jump.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_128.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/measureGas.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_XtoX.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_21000_96.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_Xto0.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_96.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashPrecompiles.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_80.json]
+0.16s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_96.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_96.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_128.json]
+0.15s call src/tests/integration/test_conformance.py::test_vm[vmTests/envInfo.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call50000_rip160.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/stateRevert.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_96.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_40.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter2.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter2.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter_2.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_96.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_3.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallRecursiveMethods.json]
+0.15s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createLargeResult.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY.json]
+0.14s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/exp.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_128.json]
+0.14s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccountCreate1559.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_fail_1.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3651_warm_coinbase/warm_coinbase_call_out_of_gas.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest150.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929OOG.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_96.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionToEmpty2.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstore_changeFromExternalCallInInitCode.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferAsk.json]
+0.13s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mul.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_huge_memory_expansion.json]
+0.13s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/NoSrcAccount1559.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partialFail.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes2.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_128.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/block504980.json]
+0.12s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loopsConditionals.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest639.json]
+0.12s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/transactionCosts.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024OOG.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls3.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_scenarios.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostExp.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024PreCalls.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest511.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stShift/shiftSignedCombinations.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore2.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMBefore.json]
+0.11s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds.json]
+0.10s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/not.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMBefore2.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_96.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/contract_creation.json]
+0.10s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/byte.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_Gas2999.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeReturn.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_80.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/createFailResult.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/creationTxInitCodeSizeLimit.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/valCausesOOF.json]
+0.10s call src/tests/integration/test_conformance.py::test_vm[vmLogTest/log1.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_96.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_OOGE.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extcodehashEmpty_Paris.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_0.json]
+0.10s call src/tests/integration/test_conformance.py::test_vm[vmLogTest/log3.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_96.json]
+0.10s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_integerBoundaries.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest467.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Call1MB1024Calldepth.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_25000_128.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_128.json]
+0.09s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/div.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMBefore.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_128.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/calling_from_new_contract_to_pre_existing_contract.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_96.json]
+0.09s call src/tests/integration/test_conformance.py::test_vm[vmLogTest/log2.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_35000.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallInfiniteLoop.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_80_Paris.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_calls.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Shnghai.json]
+0.09s call src/tests/integration/test_conformance.py::test_vm[vmTests/calldatacopy.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_opcode_contexts.json]
+0.09s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callChangeRevert.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_96.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_Paris.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/value_transfer_gas_calculation.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_stack_overflow.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/coverage/coverage.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate2.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2checkFieldsInInitcode.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_128.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromCalledContract.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest554.json]
+0.08s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/xor.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_96.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromTransaction.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_28000_128.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/homestead/yul/yul.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest636.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/eip2929-ff.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert2.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_selfdestructing_call.json]
+0.08s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert2.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_128.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1024.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert3.json]
+0.07s call src/tests/integration/test_conformance.py::test_vm[vmLogTest/log0.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithNOTZeroValueToPrecompileFromContractInitialization.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert3.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024BalanceTooLow2.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2InitCodes.json]
+0.07s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/msize.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_96.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_decreasing_blob_gas_costs.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest306.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip3855_push0/push0_contract_during_call_contexts.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OnDepth1023.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_3.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_calldata_opcodes.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_128.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_oog.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_192.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_96.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_equal_to_timestamp.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/eoaEmptyParis.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/tx_to_beacon_root_contract.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_points_with_one_g2_zero.json]
+0.07s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/mod.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/reentrant_call.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCallsOnNonEmptyReturnData.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter2.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_0input.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data_insufficient_gas.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTest.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_96.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024BalanceTooLow.json]
+0.07s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Call1024BalanceTooLow.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_4.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCalls.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_three_point_match_1.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallRecursiveBombPreCall.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/Callcode1024OOG.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover_Overflow.json]
+0.06s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/smod.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollisionBerlin.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_21000_192.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallRecursiveBombPreCall.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOG.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_192.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreate2OOGBerlin.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_2.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_616_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/zero_amount.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_1.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallOOG.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE2.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024BalanceTooLow.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_1145-4651_25000_192.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/twoOps.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFundsOldTypes.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus_again.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_25000_192.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Call1024OOG.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_calls.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_0.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_21000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_2.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/mcopy_on_empty_memory.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0_OOG_atMaxCallDepth.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5616_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_192.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_192.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_0.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5617_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateAddressCollision.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore2.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9935_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1145-3932_2969-1336_25000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest159.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g2_zero_and_g1_invalid.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_curve_order.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_192.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_2_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_25000_80_Paris.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls1.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2callPrecompiles.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_6-9_19274124-124124_25000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepthCreateOOG.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_field_modulus.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_191.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore2.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_25000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGas.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_one.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/OOGinReturn.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_0.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAskMoreGasOnDepth2ThenTransactionHas.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stBugs/returndatacopyPythonBug_Tue_03_48_41-1432.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_1_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_2_28000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/sub.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_80.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombPreCall2.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_28000_64.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_one.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_2_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_21000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_9935_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_128.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_zeropoint_by_curve_order.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_96.json]
+0.06s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_80_Paris.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_80.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_vm[vmTests/random.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsThenRevert.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/correct_increasing_blob_gas_costs.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_1_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/undefinedOpcodeFirstByte.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_21000_80.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_80.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_bad_length_193.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertDepthCreateAddressCollision.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-3_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_21000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5617_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/calldata_lengths.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_25000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_340282366920938463463374607431768211456_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/add.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5616_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_9_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_21000_80.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/multiSelfdestruct.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromTransaction.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_28000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_empty_data.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_0_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest178.json]
+0.05s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/return.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_21000_80.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_not_in_subgroup.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_1-2_25000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_40.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromContractInitialization.json]
+0.05s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/codecopy.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5616_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/sstoreGas.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_25000.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_20500.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_0_28000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/istanbul/eip1344_chainid/chainid.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_fail_1.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_two_point_match_5.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_0-0_21000_64.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexpRandomInput.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_5617_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_2_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stEIP3607/initCollidingWithNonEmptyAccount.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_340282366920938463463374607431768211456_28000_80.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_storage_Paris.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-2_0-0_21000_192.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_1_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/not.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_5617_21000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log_Caller.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallcodeLoseGasOOG.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_0_28000_128.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_perturb_g2_by_field_modulus.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE2.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallcodeLoseGasOOG.json]
+0.05s call src/tests/integration/test_conformance.py::test_vm[vmTests/blockInfo.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_2_21000_96.json]
+0.05s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE_2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-0_9935_28000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP5656-MCOPY/MCOPY_memory_hash.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/or.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9_21000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_0_21000_80.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call1024OOG.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-2_340282366920938463463374607431768211456_28000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_21000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-0_1-2_21000_192.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_noncestorage.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcode_checkPC.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest158.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_1456_28000_80.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/RETURN_Bounds.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrecompiledTouch_nonce.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_2_28000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_21000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RawCallGasAsk.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_1-2_1_21000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stacksanitySWAP.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_insufficient_gas.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest154.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_9935_28000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_0_21000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest48.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ByZero.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_5616_28000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_340282366920938463463374607431768211456_28000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostJump.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_7827-6598_5617_21000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGE_2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStackTests/stackOverflowSWAP.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecmul_1-3_9935_21000_96.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_1-3_0-0_21000_80.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromTransaction.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecadd_0-3_1-2_25000_128.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter_3.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/SelfDestruct.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest650.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DUP_Bounds.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallcodeToPrecompileFromCalledContract.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDynamicArgument.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/failed_tx_xcf416c53_Paris.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_1.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callBasic.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_call_stack_levels.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_created_in_same_tx_with_revert.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/berlin/eip2930_access_list/access_list.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE_2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_with_g1_zero.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge2/ecmul_0-3_5616_28000_96_Paris.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls0.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBombLog2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/modexp_modsize0_returndatasize.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGE.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToSuicideThenExtcodehash.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE2.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcalls3.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceCallTypes.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/modexp_0_0_0_22000.json]
+0.04s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/and.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip6780_selfdestruct/selfdestruct_not_created_in_same_tx_with_revert.json]
+0.04s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromTransaction.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stZeroKnowledge/ecpairing_one_point_fail.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest205.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromCalledContract.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasContractCreation.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionNonZeroNonce.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/callToNonExistent.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter_1.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/DelegatecallToPrecompileFromContractInitialization.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stExample/labelsExample.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/ecrecoverShortBuff.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_OOGMAfter2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreateReturnValue.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckOpcodes4.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionBalance.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromCalledContract.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/InitCollisionParis.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide1.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3651-warmcoinbase/coinbaseWarmAccountCallGasFail.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertSubCallStorageOOG2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/CallWithZeroValueToPrecompileFromContractInitialization.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/newly_created_contract.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/Delegatecall1024OOG.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_BoundsOOG.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ContractInheritance.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstruction.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButNonce.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/outOfFunds.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionOOG.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMAfter.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldataloadNonConst.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/calldatacopyNonConst.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter_3.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractRETURNBigOffset.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_FirstByte_loop.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/gas_usage.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionCallData.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/lt.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_FirstByte_loop.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_init_Paris.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/sgt.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/slt.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256Of256.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/doubleSelfdestructTouch_Paris.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb0.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/gt.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcode.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mload.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_1102.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/lowGasLimit.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_gasprice_opcode.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/mstore8.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_value_opcode.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/sstore_sload.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_OOGMAfter_2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmpty2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGE.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_256.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_tx.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmTests/calldataload.json]
+0.03s call src/tests/integration/test_conformance.py::test_vm[vmTests/suicide.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/TransactionCollisionToEmptyButCode.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceEqualsBalance.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb0.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE_2.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CreateContractFromMethod.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstruction.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMBefore.json]
+0.03s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ABAcallsSuicide0.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGMBefore.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT01.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/iszero.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls1.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_contract_deploy.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopCallsDepthThenRevert.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionNonce.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionStorageParis.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stBugs/staticcall_createfails.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_oog_after_deeper.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/createInitCodeSizeLimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/manualCreate.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_OOGE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2noCash.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMAfter.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_OOGE_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload_dejavu.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb1.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3860-limitmeterinitcode/create2InitCodeSizeLimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeValid.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+1.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/LoopDelegateCallsDepthThenRevert.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01_OOGE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound2.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmBitwiseLogicOperation/eq.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/POP_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/balance_within_block.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-33.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_OOGE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructedRevert.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeDynamicCode2SelfCall.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+31.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/OutOfGasPrefundedContractCreation.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMPI_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGMBefore.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/use_value_in_contract.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallRecursiveBomb3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertRemoteSubCallStorageOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-33.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide1.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGasPartial.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb1.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertOpcodeCalls.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds4.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip5656_mcopy/no_memory_corruption_on_upper_create_stack_levels.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_ABCB_RECURSIVE2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideNoStorage.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_OOGMAfter.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stEIP2930/coinbaseT2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/create2CodeSizeLimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CREATE_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_OOGE_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideTwice.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashMaxCodeSize.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestKeywords.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMBefore.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGMAfter_3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorZeroMemExpanion.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndGasOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/JUMP_Bounds.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pc.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOGBonusGas.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeOwnerRemovePendingTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/createCodeSizeLimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stAttackTest/CrashingTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/contractCreationMakeCallThatAskMoreGasThenTransactionProvided.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stExample/accessListExample.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_1.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/gas.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromContractInitialization.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/CallLowLevelCreatesSolidity.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixedf0.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxsNotEnoughGas.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorZeorSizeMemExpansion.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromCalledContract.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_Call10.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateCollisionResults.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+31.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0100.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_WithValue.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CodeInConstructor.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2SmartInitCode.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesSuccess.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodesizeNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRecursiveCreate/recursiveCreate.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/returnNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/StaticcallToPrecompileFromTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial_zero_read.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInitOOG_Tr.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideStorage.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log2_dejavu.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2a.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_LoopCallsDepthThenRevert.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallToSuicideNoStorage.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertDepth2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/signextNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mloadNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr01.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_create.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addmodNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest648.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts2_Paris.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideEnd2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSuicide50procentCap.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sltNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestOverflow.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower256.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/self_destructing_account.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionPartial.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndGasOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest645.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/shanghai/eip4895_withdrawals/large_amount.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionDataCosts652.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip7516_blobgasfee/blobbasefee_out_of_gas.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_0.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceUpdate.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2a.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_works.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/codecopyNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sgtNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashInInitCode.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletRemoveOwnerRemovePendingTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractAndCallItOOG.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000Byzantium.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstoreNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/balanceNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/createNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mstore8NonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callcodeNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConstructionPartial.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallToSuicideTwice.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeDirectCall.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_255.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blobhash_invalid_blob_index.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/extcodecopyNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageRevertedOOGInInit2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeCreate.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/pop.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toNonExistent.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/byteNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds3.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/andNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log0NonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContract.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCode.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/gtNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_ABCB_RECURSIVE2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit_from_call.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/subNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sdivNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_Bounds2.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/callNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletAddOwnerRemovePendingTransaction.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/orNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpiNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/divNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/notNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log2NonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/eqNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_ABCB_RECURSIVE.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/expNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sha3NonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/xorNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/addNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_256.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/ltNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/mulmodNonConst.json]
+0.02s call src/tests/integration/test_conformance.py::test_vm[vmIOandFlowOperations/loop_stacklimit.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds2a.json]
+0.02s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitMultiOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/suicideNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log3NonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sstoreNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/iszeroNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueAndOOGatTxLevel.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/delegatecallNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest36.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/jumpNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionCode2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/log1NonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeWithBigOutputInInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/sloadNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExisContractWithVTransferNEMoney.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletChangeRequirementRemovePendingTransaction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/smodNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitOOGforCREATE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeCreate.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stArgsZeroOneBalance/modNonConst.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CheckCallCostOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stQuadraticComplexityTest/Create1000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToEmptyContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/delegatecall09Undefined.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALL_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/CallLoseGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteOverDailyLimitOnlyOneOwnerNew.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletExecuteUnderDailyLimit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeOOGInvalidSize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4844_blobs/blob_tx_attribute_opcodes.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_ABCB_RECURSIVE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createFailBalanceTooLow.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MSTORE_Bounds2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255_257.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/FillStack.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/create2collisionSelfdestructed2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest476.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStoreGasPrices.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTestsParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillToWallet.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwnerAddMyself.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransferMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SSTORE_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/DELEGATECALL_Bounds2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/mergeTest.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/static_CALL_Bounds2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGasAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/CALLCODE_Bounds2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemoryAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_Msize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/SLOAD_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContractsCreate4Contracts.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBomb3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/MLOAD_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_OOGE_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionCorrect.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_toIsOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitConstructionOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwner_fromNotOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedConstructionNotEnoughGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawBalanceGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest326.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CreateMessageReverted.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedAddOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/tx_e1c174e2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitResetSpentToday.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/solidityExample.json]
+0.01s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/expPower2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryStressTest/mload32bitBound_return.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest214.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/CallLoseGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_0wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar00.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionHighNonce.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCallFailed.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/RecursiveCreateContracts.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/vitalikTransactionTestParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_ownerIsNotOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_overrun.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest279.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_smaller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_prefix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeCopyMemoryGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/deploymentError.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-0101.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemoryAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo0.json]
+0.01s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/fib.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimitNoData.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/add11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_OneVCallSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_vm[vmArithmeticTest/arith.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_PC.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/sha3_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/dayLimitSetDailyLimit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestCryptographicFunctions.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractInteraction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcalls0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletConfirm.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallStoreClearsOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverV_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemoryAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_calldelcode_01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallGoesOOGOnSecondLevel.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_postfix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/selfdestructEIP2929.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevelWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest643.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_MaxTopic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callCreate3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload8bitBound.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest185.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest134.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestContractSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeRequirementTo2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwnerByNonOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_ZeroVCallSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest418.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_gas3000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest367.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRevokeNothing.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverR_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/DelegateCallOnEIPWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideOrigin.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest216.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_NoGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefaultWithOutValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ReturnTest.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractAndCallIt_1wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_create_successful_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/Call10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RevertDepth2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerFalse.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/extcodecopy.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccountCancun.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticFlagEnabled/StaticcallForPrecompilesIssue683.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideNotExistingAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCodeCopyTest/ExtCodeCopyTargetRangeLongerThanCodeTests.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest409.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/NewGasPriceForCodesWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/callDataCopyOffset.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_staticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/add11_yml.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/ABAcallsSuicide0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest273.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAndCallcodeConsumeMoreGasThenTransactionHas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest263.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXTCODESIZE_toEpmtyParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/typeTwoBerlin.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest222.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest180.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_delegatecall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractAndCallIt_0wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToOneStorageKey_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest498.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest163.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_RETURN_Bounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest162.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest53.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/invalidTr.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest352.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_refund_CallA.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_empty000CreateinInitCode_Transaction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestStructuresAndVariabless.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_PostToReturn1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest523.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/memCopySelf.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stChainId/chainId.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKill.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToReturn1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherPostDeath.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/create_callprecompile_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_NoCollision.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest103.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverV_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4_gas719.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest378.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest261.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToEmpty_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest337.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/deleagateCallAfterValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallBasic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallRecursiveContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorValueTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/TestBlockAndTransactionProperties.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/PythonRevertTestTue201814-1430.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest604.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigRight.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletDefault.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyOOG_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest487.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorage.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigRight.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest237.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest208.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_staticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest354.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4_gas99.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueOOGinCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverS_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLength.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest173.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest464.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOpcodeInCreateReturns.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2Cancun.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1ForDynamicJump1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcode_checkPC.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/walletKillNotByOwner.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAskMoreGasOnDepth2ThenTransactionHasWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest307.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem31b_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CreateHashCollision.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_overlappingInputOutput.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallSenderCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_AcreateB_BSuicide_BStore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest155.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest257.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistrator0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_staticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedChangeOwnerNoArgument.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest442.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest383.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest547.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest69.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest187.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCallCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallGoesOOGOnSecondLevel2WithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest184.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedRemoveOwner_mySelf.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_transaction_begin.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorOutOfGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest299.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToOneStorageKey_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/transient_storage_unset_values.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_call.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndataSize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest19.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest78.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/codeCopyZero_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest281.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest583.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest212.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb-1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas17.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest322.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/10_revertUndoesStoreAfterReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest200.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest139.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createJS_ExampleContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeOutput3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest425.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest290.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CallAndCallcodeConsumeMoreGasThenTransactionHasWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest484.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_SUICIDE_ToNonZeroBalance_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest9.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToEmpty_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^254_254.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/testRandomTest.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallToNameRegistrator0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest102.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest553.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverR_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawDelegateCallGasMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_256.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log3_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_0_256-1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_0input.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest302.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_gas3000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest278.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest461.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_delegatecall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToOneStorageKey_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreGasOnCreate.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverS_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest13.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverR_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractAndCallItOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/indexesOmitExample.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallTheContractToCreateEmptyContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest611.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractInInitCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferMemoryAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest495.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/dynamicAccountOverwriteEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest280.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas17.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest236.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest414.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest147.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callerAccountBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CalltoReturn2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest313.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest225.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest219.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest615.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailStackUnderflow.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToReturn1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest80.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest589.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallOpCodeCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_gas3000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl01-ff.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest190.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_gasprice.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/NewGasPriceForCodes.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_value_inherit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest245.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CALL_ZeroVCallSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest572.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte-1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_postfixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest211.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4_gas99.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest271.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stChainId/chainIdGasCost.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_then_call_value_fail_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest88.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert2_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest412.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest471.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest192.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest20.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_NoGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest242.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_0input.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_257.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/CreateAndGasInsideCreateWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest169.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToOneStorageKey_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/ReturnTest.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds6.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest72.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest571.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest6.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codecopy_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCallerAddresTooBigLeft.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemExpandingEIP150Calls/ExecuteCallThatAskMoreGasThenTransactionHasWithMemExpandingCalls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest62.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest312.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLengthWrongV.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest411.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageReverted.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE_valueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest333.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest59.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest555.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest269.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToEmpty_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest499.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_outsize_then_create_successful_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/AmbiguousMethod.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest206.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_248.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_successful_callcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawExtCodeSizeGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log1_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount1Cancun.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigRight.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest215.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest398.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_failing_callcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest380.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_after_store.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4_gas719.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractOOGBonusGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallValueCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest348.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/subcallReturnMoreThenExpected.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallOOGinCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPreStore1NotEnoughGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partialFail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_bug.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem33b_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSubcallSuicideCancun.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest310.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToEmpty.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createWithInvalidOpcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/makeMoney.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest407.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest335.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_3_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDeletedAccount3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest303.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/EXP_Empty.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_OOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest167.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/yulExample.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverV_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest357.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecallcode_111_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest244.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest98.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest356.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeReturndata3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhBounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/CALL_OneVCallSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest83.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractWhichWouldCreateContractIfCalled.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecodeDynamicCode2SelfCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentitiy_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToEmpty_OOGRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest559.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest503.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToReturn1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest117.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest259.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeWithHighValueAndGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcodecall_110_SuicideMiddle2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest435.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_2^255_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashAccountWithoutCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest455.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstore_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_overlappingInputOutput.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest457.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest384.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/eip1559.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExample/basefeeExample.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest282.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest620.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4_gas99.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb+32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest23.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest14.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest576.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverUnrecoverableKey.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest588.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/PointAtInfinityECRecover.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest507.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest419.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest111.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeTo0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALL_ToNonZeroBalance_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest45.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest318.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest532.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/14_revertAfterNestedStaticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest360.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest196.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistrator.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest133.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest644.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashDELEGATECALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest480.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest465.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInDelegateCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_Gas2999.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistrator0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateRandomInitCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/NashatyrevSuicideRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem0b_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest607.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/StackUnderFlowContractCreation.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64m1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest629.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest57.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest420.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest149.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest448.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest599.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/log4_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_completeReturnValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest52.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest579.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3partialFail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_DELEGATECALL_ToNonZeroBalance_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_singleSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest482.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest481.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_send_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest584.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest426.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest386.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_6_inputShorterThanOutput.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte-1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover0_completeReturnValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest438.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/sec80.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest439.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest443.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest493.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest131.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_callsItself.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest473.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest361.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest92.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_3_postfix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest304.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest275.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest506.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ValueOverflowParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALLCODE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/CallContractToCreateContractNoCash.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/currentAccountBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest143.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+32.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValueToItself.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest267.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stWalletTest/multiOwnedIsOwnerTrue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallBeforeTransition.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb+1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_changeNonZeroStorage.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_completeReturnValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest541.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest633.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_prefix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCallOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest384.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest565.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest55.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest388.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts/identity_to_bigger.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashChangedAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest28.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFail_OOGduringInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest60.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest586.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_CALL_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_getEtherBack.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest252.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOOG_MemExpansionOOV.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest524.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest603.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest502.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest582.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest475.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest365.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mstroe8_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest176.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSTATICCALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest446.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest536.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecall_10_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest537.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb-33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest592.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/createEmptyThenExtcodehash.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_3_postfixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest641.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_staticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest456.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest520.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/opcodeBlobhashOutOfRange.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest227.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest125.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest145.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_multimpleSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^255-1_254.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest618.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest462.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundSSTORE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest497.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest514.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecall_010_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest84.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest332.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest137.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest424.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50percentCap.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNonExistingAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest402.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest546.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest496.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountRecheckInOuterCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest393.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/19_oogUndoesTransientStore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateOOGafterInitCodeRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest501.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest638.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mload16bitBound.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/return0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_0wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest341.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest477.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest249.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest195.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest433.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest585.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_3_prefix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest491.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest66.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest612.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_then_create2_successful_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest166.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest567.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest396.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest450.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest526.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_Caller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest179.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest369.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToExistingContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest345.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest646.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest148.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest545.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest413.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest107.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest605.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest597.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest580.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/extcodecopy_dejavu.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest539.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorPerTxs.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest376.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_MaxTopic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest630.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest445.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest421.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallMemoryGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecall_10_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeCopyBounds.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest574.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallAskMoreGasOnDepth2ThenTransactionHas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest146.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb_singleByte+33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest533.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest528.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest550.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest509.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest309.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest30.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest355.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest191.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/DelegateCallOnEIP.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcode_01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecallcode_111_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest366.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcodecall_110_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest564.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest635.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcodecallcode_011_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest199.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest616.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest649.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest405.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest41.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest548.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest469.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CreateAndGasInsideCreate.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcallcode_001_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/OverflowGasRequire2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicideOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToDelCallOpCodeCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest556.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest560.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest621.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest610.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest395.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToStaticOpCodeCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest513.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_4_gas18.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest521.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest483.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest516.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest510.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_NoGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/ExecuteCallThatAskForeGasThenTrabsactionHas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest406.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest489.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest387.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/SuicideToNotExistingContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest429.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcallcode_101_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/sar_2^256-1_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest519.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest602.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_failing_call.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccountStaticCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest575.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest454.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest39.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest404.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest81.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32b_singleByte.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest534.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest542.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasValueTransferAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest17.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest24.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecallcode_111_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl_-1_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest430.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateFailGasValueTransfer2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest444.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest505.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest129.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest569.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest626.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverH_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest578.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcallcallcode_001_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest512.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest363.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest608.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverCheckLengthWrongV.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest472.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallLoseGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest518.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/CallGoesOOGOnSecondLevel.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_Caller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest587.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndata3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest642.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest124.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToExistingContractOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest640.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest452.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest301.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest114.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest298.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest18.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelfInInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashCreatedAndDeletedAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest220.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest478.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest358.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest440.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shl_2^255-1_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest637.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentitiy_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest628.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/codeCopyOffset.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest96.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest460.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest632.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverCheckLength.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest494.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest142.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest552.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateNEContractInInit_Tr.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcode_11_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatasize_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcallcode_101_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest389.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest563.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest488.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest359.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_Caller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stShift/shr_-1_255.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertOpcodeInCreateReturnsCreate2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest232.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAtTransition.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_Caller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest153.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest504.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest500.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest188.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest327.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/frontier/opcodes/cover_revert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest609.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest451.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/gasCostReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest15.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest416.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callcodeOutput3Fail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund600.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesCallCodeHomestead/callcodecallcall_100_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/calldatacopy_dejavu2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest371.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64e0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsAt.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest596.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest581.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/beacon_root_selfdestruct.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest12.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContractCreateEContractInInit_Tr.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP1559/senderBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefound.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest110.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest248.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest601.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest535.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest625.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest470.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP4844-blobtransactions/blobhashListBounds3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest85.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest410.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest385.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest417.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest527.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest25.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/StoreClearsAndInternalCallStoreClearsSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateAutoSuicideContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsRevert/ZeroValue_CALLCODE_ToNonZeroBalance_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallSha256_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest340.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest294.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest201.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest74.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest401.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_CallData.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest562.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest397.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3Fail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallEmptycontract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund50_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest517.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/balanceInputAddressTooBig.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContractWithStorageAndCallIt_1wei.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest67.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_PC.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest627.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest474.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest5.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest47.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_makeMoney.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest288.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest266.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/TouchToEmptyAccountRevert3_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest230.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest265.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest466.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest197.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_MaxTopic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest320.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log1_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/delegatecallAfterTransition.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_revert_in_staticcall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Cancun/stEIP1153-transientStorage/17_tstoreGas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest525.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest300.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_0_0_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorTooMuchMemory2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_logMemsizeZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_call_OOG_additionalGasCosts1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest408.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCreateGasValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverInvalidSignature.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest349.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest231.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest334.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest177.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest283.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest202.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCall_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest399.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest119.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest362.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest297.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcodecall_110_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/EmptyTransaction3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashSelf.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest415.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest447.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest338.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest368.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/invalid_beacon_root_calldata_value.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest316.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EmptyContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest566.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcallcode_001_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest436.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest531.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest27.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_nonEmptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest449.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest437.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest485.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_4_gas18.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest347.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest422.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest346.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_CallA_notEnoughGasInCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3partial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log4_MaxTopic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcall_00_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest189.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas17.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_following_revert_in_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallAndOOGatTxLevel.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest95.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest268.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stExtCodeHash/extCodeHashNewAccount.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callOutput3partialFail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest207.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150Specific/Transaction64Rule_d64p1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest264.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest353.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE2_RefundEF.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonce.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest351.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest315.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertOnEmptyStack.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasPriceParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stBugs/randomStatetestDEFAULT-Tue_07_58_41-15153-575192_london.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorMemOOGAndInsufficientBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest118.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcall_100_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest260.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/returndatacopy_afterFailing_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callToCallCodeOpCodeCheck.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideSendEtherToMe.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest381.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/StackDepthLimitSEC.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest543.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest508.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest624.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/RevertInCreateInInitCreate2Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_SUICIDE_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest217.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundMax.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertPrefoundEmptyCallOOG_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateMessageSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest428.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/logInOOG_Call.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest246.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest350.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_MaxTopic.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest600.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log0_emptyMem.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallStoreClearsSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest342.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip4788_beacon_root/no_beacon_root_contract_at_transition.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_InternalCallHittingGasLimit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest577.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_nonEmptyMem_logMemSize1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest112.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest305.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemStartTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest382.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem64kb.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest138.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log2_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest364.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log1_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_OOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest54.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecover80.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest194.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/delegatecallInInitcodeToEmptyContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover80.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_TxToSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refund_NoOOG_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSelfBalance/selfBalanceGasCost.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest75.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest198.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest82.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecoverH_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_0_0_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRefundTest/refundFF.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecoverS_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecallcode_011_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput3Fail.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP158Specific/callToEmptyThenCallErrorParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stLogTests/log3_logMemsizeTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest296.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest339.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest105.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_EContract_ThenCALLToNonExistentAcc.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_CALLCODE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callcodeWithHighValueAndGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContractOOGInitCode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcode_01_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest26.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest285.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_4.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest379.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover80.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stMemoryTest/mem32kb_singleByte+1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/basic_tload_other_after_tstore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest544.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideCaller.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInCreateInInit_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcode_01.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest558.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest73.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest323.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcode_01_SuicideEnd2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_delegatecall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Shanghai/stEIP3855-push0/push0Gas.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransitionTest/createNameRegistratorPerTxsBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest43.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest126.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CalltoReturn2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest64.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest308.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/InternalCallHittingGasLimitSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput3partial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/suicideAddress.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallEcrecoverH_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/PostToReturn1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecall_10_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest37.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest120.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest311.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMem2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CreateTransactionRefundEF.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest221.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest243.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest122.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcodecallcode_11.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom2/randomStatetest647.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest343.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALLCODE_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallGasAsk.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest210.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest233.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALLwithData_ToEmpty_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasValueTransferMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecallcode_011_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest270.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateStopInInitcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorOutOfMemoryBonds1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest336.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallDelegateCodesHomestead/callcallcodecall_010_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndSendMoneyToItselfEtherDestroyed.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest135.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_revert_in_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/HighGasLimit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcodecall_010_SuicideMiddle2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callOutput1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest171.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesStopAfterSuicide.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeInInitcodeToExistingContractWithValueTransfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest115.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest51.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_ContractSuicideDuringInit_ThenStoreThenReturn.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMBefore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcallcode_101_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest247.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_tstore_is_zero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest295.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_callcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest58.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest321.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP150singleCodeGasPrices/RawCallCodeGasMemory.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/CreateTransactionSuccess.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_CALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcodecallcall_100.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest164.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createNameRegistratorendowmentTooHigh.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_DELEGATECALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest77.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest286.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callWithHighValueAndOOGatTxLevel.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest106.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSuicideDuringInit_WithValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRecursiveBombLog.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRevertTest/RevertInStaticCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcode_11_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest63.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest254.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest157.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest172.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailBadJumpDestination2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecallcode_111_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/TestNameRegistrator.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODERipemd160_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorAddressTooBigLeft.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_SUICIDE_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest156.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcallcode_001_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stDelegatecallTestHomestead/callWithHighValueAndGasOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/callcodeToNameRegistratorAddresTooBigLeft.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/contractCreationOOGdontLeaveEmptyContractViaTransaction.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest89.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallIdentity_1_nonzeroValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest209.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest121.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSStoreTest/SstoreCallToSelfSubRefundBelowZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallEcrecover0_Gas2999.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcallcode_101_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest204.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_ContractSSTOREDuringInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_4_gas719.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest29.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest87.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentity_3.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest228.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest238.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValue.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest325.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcall_100_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest372.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest161.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest42.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callcallcall_000_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/callWithHighValueOOGinCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_after_successful_callcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/call_ecrec_success_empty_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonceMinus1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest175.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecall_10_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALLwithData_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallIdentity_4_gas18.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/CallToNameRegistratorNotMuchMemory1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/ContractStoreClearsOOG.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest22.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest116.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stZeroCallsTest/ZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_postfixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest90.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCodeSizeLimit/codesizeInit.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest183.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODESha256_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/SuicidesAndInternalCallSuicidesBonusGasAtCall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_too_big_transfer.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest226.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToItself.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSystemOperationsTest/createNameRegistratorZeroMemExpansion.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionSendingToZero.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodecallcodecall_110_OOGE.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/call_outsize_then_create2_successful_then_returndatasize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcall_00_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCreateCallCodeTest/createInitFailUndefinedInstruction2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_DELEGATECALL.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest104.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest287.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest16.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest144.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest274.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEIdentitiy_1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallRipemd160_0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest251.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest370.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest250.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest49.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stInitCodeTest/TransactionCreateSuicideInInitcode.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToOneStorageKey_Paris.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcall_000_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stBadOpcode/eip2315NotRemoved.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest33.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecall_010_SuicideEnd.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest130.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest292.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreateTest/CREATE_HighNonceMinus1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[Pyspecs/cancun/eip1153_tstore/tload_after_sstore.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_OOGMAfter.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/OverflowGasMakeMoney.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest174.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_ZeroValue_SUICIDE_OOGRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_after_failing_delegatecall.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcallcodecallcode_011_SuicideMiddle.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest276.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaContract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest97.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/CREATE2_HighNonce.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts2.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest329.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeReturndataSize.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest293.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCreate2/Create2OOGafterInitCodeRevert.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_callOutput1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_log0_nonEmptyMem_logMemSize1_logMemStart31.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest291.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CALLCODEEcrecover0_overlappingInputOutput.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stHomesteadSpecific/createContractViaTransactionCost53000.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest151.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stNonZeroCallsTest/NonZeroValue_TransactionCALL_ToNonNonZeroBalance.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/sha3_deja.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_afterFailing_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_initial_big_sum.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/call_OOG_additionalGasCosts1.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stTransactionTest/TransactionToAddressh160minusOne.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stPreCompiledContracts2/CallSha256_3_postfix0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stEIP3607/transactionCollidingWithNonEmptyAccount_calls.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stStaticCall/static_CallRipemd160_3_prefixed0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSLoadTest/sloadGasCost.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stRandom/randomStatetest108.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stCallCodes/callcodeEmptycontract.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatasize_initial.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/FailedCreateRevertsDeletionParis.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/gasPrice0.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stReturnDataTest/returndatacopy_following_successful_create.json]
+0.01s call src/tests/integration/test_conformance.py::test_bchain[stSpecialTest/push32withoutByte.json]
+0.01s setup src/tests/integration/test_conformance.py::test_bchain[stSolidityTest/ContractInheritance.json]
+
+(5711 durations < 0.005s hidden. Use -vv to show these durations.)
+================ 2720 passed, 109 skipped in 211.88s (0:03:31) =================
+make[1]: Leaving directory '/home/zhaoji/evm-semantics/kevm-pyk'
diff --git a/tests/interactive/sumTo10.evm.parse-expected b/tests/interactive/sumTo10.evm.parse-expected
index d4d91a9261..15f87a1eef 100644
--- a/tests/interactive/sumTo10.evm.parse-expected
+++ b/tests/interactive/sumTo10.evm.parse-expected
@@ -1 +1 @@
-Lbl'UndsUndsUnds'ETHEREUM-SIMULATION'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(LblmkAcct'UndsUnds'STATE-UTILS'Unds'EthereumCommand'Unds'Int{}(\dv{SortInt{}}("7")),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblload'UndsUnds'STATE-UTILS'Unds'EthereumCommand'Unds'JSON{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("account")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortInt{}, SortJSONKey{}}(\dv{SortInt{}}("7")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("balance")),inj{SortInt{}, SortJSON{}}(\dv{SortInt{}}("1000000000"))),LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("nonce")),inj{SortInt{}, SortJSON{}}(\dv{SortInt{}}("1"))),LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("code")),inj{SortBytes{}, SortJSON{}}(Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}())),LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("storage")),inj{SortMap{}, SortJSON{}}(Lbl'Stop'Map{}())),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}())))))),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}())))),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblload'UndsUnds'STATE-UTILS'Unds'EthereumCommand'Unds'JSON{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("exec")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("address")),inj{SortInt{}, SortJSON{}}(\dv{SortInt{}}("7"))),LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("gas")),inj{SortInt{}, SortJSON{}}(\dv{SortInt{}}("100000"))),LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("code")),inj{SortOpCodes{}, SortJSON{}}(Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblMSTORE'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("10")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("32")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblMSTORE'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortNullStackOp{}, SortOpCode{}}(LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("32")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblMLOAD'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblISZERO'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("411")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblJUMPI'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("32")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblMLOAD'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortStackOp{}, SortOpCode{}}(LblDUP{}(\dv{SortInt{}}("1"))),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblMLOAD'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblADD'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblMSTORE'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("1")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortStackOp{}, SortOpCode{}}(LblSWAP{}(\dv{SortInt{}}("1"))),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblSUB'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("32")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblMSTORE'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("134")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblJUMP'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortNullStackOp{}, SortOpCode{}}(LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblMLOAD'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblSSTORE'Unds'EVM'Unds'BinStackOp{}()),Lbl'Stop'OpCodes'Unds'EVM-ASSEMBLY'Unds'OpCodes{}())))))))))))))))))))))))))))))))))),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}())))))),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblstart'Unds'ETHEREUM-SIMULATION'Unds'EthereumCommand{}(),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblcheck'UndsUnds'ETHEREUM-SIMULATION'Unds'EthereumCommand'Unds'JSON{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("account")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortInt{}, SortJSONKey{}}(\dv{SortInt{}}("7")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("storage")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("0x00")),inj{SortString{}, SortJSON{}}(\dv{SortString{}}("0x37"))),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}()))),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}()))),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}())))),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblfailure'UndsUnds'ETHEREUM-SIMULATION'Unds'EthereumCommand'Unds'String{}(\dv{SortString{}}("Interactive sumTo10 test")),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblsuccess'Unds'ETHEREUM-SIMULATION'Unds'EthereumCommand{}(),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblclear'Unds'STATE-UTILS'Unds'EthereumCommand{}(),Lbl'Stop'EthereumSimulation'Unds'ETHEREUM-SIMULATION'Unds'EthereumSimulation{}()))))))))
\ No newline at end of file
+Lbl'UndsUndsUnds'ETHEREUM-SIMULATION-PURE'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(LblmkAcct'UndsUnds'STATE-UTILS'Unds'EthereumCommand'Unds'Int{}(\dv{SortInt{}}("7")),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION-PURE'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblload'UndsUnds'STATE-UTILS'Unds'EthereumCommand'Unds'JSON{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("account")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortInt{}, SortJSONKey{}}(\dv{SortInt{}}("7")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("balance")),inj{SortInt{}, SortJSON{}}(\dv{SortInt{}}("1000000000"))),LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("nonce")),inj{SortInt{}, SortJSON{}}(\dv{SortInt{}}("1"))),LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("code")),inj{SortBytes{}, SortJSON{}}(Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}())),LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("storage")),inj{SortMap{}, SortJSON{}}(Lbl'Stop'Map{}())),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}())))))),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}())))),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION-PURE'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblload'UndsUnds'STATE-UTILS'Unds'EthereumCommand'Unds'JSON{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("exec")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("address")),inj{SortInt{}, SortJSON{}}(\dv{SortInt{}}("7"))),LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("gas")),inj{SortInt{}, SortJSON{}}(\dv{SortInt{}}("100000"))),LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("code")),inj{SortOpCodes{}, SortJSON{}}(Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblMSTORE'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("10")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("32")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblMSTORE'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortNullStackOp{}, SortOpCode{}}(LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("32")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblMLOAD'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblISZERO'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("411")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblJUMPI'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("32")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblMLOAD'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortStackOp{}, SortOpCode{}}(LblDUP{}(\dv{SortInt{}}("1"))),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblMLOAD'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblADD'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblMSTORE'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("1")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortStackOp{}, SortOpCode{}}(LblSWAP{}(\dv{SortInt{}}("1"))),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblSUB'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("32")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblMSTORE'Unds'EVM'Unds'BinStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("134")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblJUMP'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortNullStackOp{}, SortOpCode{}}(LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortUnStackOp{}, SortOpCode{}}(LblMLOAD'Unds'EVM'Unds'UnStackOp{}()),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(LblPUSHAsm{}(\dv{SortInt{}}("32"),\dv{SortInt{}}("0")),Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(inj{SortBinStackOp{}, SortOpCode{}}(LblSSTORE'Unds'EVM'Unds'BinStackOp{}()),Lbl'Stop'OpCodes'Unds'EVM-ASSEMBLY'Unds'OpCodes{}())))))))))))))))))))))))))))))))))),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}())))))),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION-PURE'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblstart'Unds'ETHEREUM-SIMULATION-PURE'Unds'EthereumCommand{}(),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION-PURE'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblcheck'UndsUnds'ETHEREUM-SIMULATION-PURE'Unds'EthereumCommand'Unds'JSON{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("account")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortInt{}, SortJSONKey{}}(\dv{SortInt{}}("7")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("storage")),LblJSONObject{}(LblJSONs{}(LblJSONEntry{}(inj{SortString{}, SortJSONKey{}}(\dv{SortString{}}("0x00")),inj{SortString{}, SortJSON{}}(\dv{SortString{}}("0x37"))),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}()))),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}()))),Lbl'Stop'List'LBraQuot'JSONs'QuotRBra'{}())))),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION-PURE'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblfailure'UndsUnds'ETHEREUM-SIMULATION-PURE'Unds'EthereumCommand'Unds'String{}(\dv{SortString{}}("Interactive sumTo10 test")),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION-PURE'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblsuccess'Unds'ETHEREUM-SIMULATION-PURE'Unds'EthereumCommand{}(),Lbl'UndsUndsUnds'ETHEREUM-SIMULATION-PURE'Unds'EthereumSimulation'Unds'EthereumCommand'Unds'EthereumSimulation{}(Lblclear'Unds'STATE-UTILS'Unds'EthereumCommand{}(),Lbl'Stop'EthereumSimulation'Unds'ETHEREUM-SIMULATION-PURE'Unds'EthereumSimulation{}()))))))))
\ No newline at end of file
diff --git a/tests/specs/opcodes/verification.k b/tests/specs/opcodes/verification.k
index 16fc7281d3..83524d698a 100644
--- a/tests/specs/opcodes/verification.k
+++ b/tests/specs/opcodes/verification.k
@@ -1,12 +1,15 @@
requires "evm.md"
requires "lemmas/int-simplification.k"
+requires "buf.md"
module VERIFICATION
imports EVM
imports INT-SIMPLIFICATION
-
+ imports BUF
rule #sizeWordStack(WS , N) => #sizeWordStack(WS, 0) +Int N requires N =/=Int 0 [simplification]
rule #sizeWordStack(WS [ I := _ ], N) => #sizeWordStack(WS, N) requires I true [simplification]
rule #sizeWordStack(_ , 0) false requires N <=Int 0 [simplification]
+
+ rule 0 <=Int Gzero < _ > => true [simplification]
endmodule