From 96264b839f8d5c845d11e1ceceedc01d29f5fb2b Mon Sep 17 00:00:00 2001 From: a10zn8 Date: Fri, 23 Sep 2022 05:23:41 +0400 Subject: [PATCH] problem: separate tests are not usable in the current state, better to work on improving unit tests --- .../upstream/signature/EcdsaSignerSpec.groovy | 4 +- .../test/resources/signer}/test_key | 0 .../test/resources/signer}/test_key.pub | 0 testing/.gitignore | 3 - testing/README.adoc | 104 - testing/dshackle/README.adoc | 14 - testing/dshackle/dshackle-basic.yaml | 50 - testing/dshackle/dshackle-real.yaml | 30 - testing/dshackle/dshackle-rinkeby.yaml | 26 - testing/simple-upstream/README.adoc | 6 - testing/simple-upstream/build.gradle | 22 - testing/simple-upstream/settings.gradle | 1 - .../main/groovy/testing/BlocksHandler.groovy | 32 - .../main/groovy/testing/CallHandler.groovy | 48 - .../main/groovy/testing/CommonHandlers.groovy | 25 - .../groovy/testing/InternalHandler.groovy | 35 - .../groovy/testing/InvalidCallHandler.groovy | 8 - .../groovy/testing/PingPongHandler.groovy | 12 - .../groovy/testing/ResourceResponse.groovy | 25 - .../main/groovy/testing/SimpleUpstream.groovy | 73 - .../groovy/testing/TestcaseHandler.groovy | 44 - .../src/main/resources/block-0x100000.json | 25 - .../src/main/resources/block-0x100001.json | 26 - .../src/main/resources/chain-id.json | 5 - .../src/main/resources/trace-0xd949bc.json | 6966 ----------------- ...0f871c7679841d86ae5bb98676bb2d8e68dfa.json | 16 - ...1c5ee3f686a86b2aa673552cf0f9de9a42e77.json | 16 - ...1ddfe8d9c1975d2b8375a522700f7f59c3ed0.json | 16 - ...08b159aa07e97b8e8cddb8f81cb606e13382e.json | 16 - testing/trial/README.adoc | 8 - testing/trial/build.gradle | 35 - testing/trial/settings.gradle | 1 - .../dshackle/testing/trial/Client.groovy | 6 - .../dshackle/testing/trial/Debugger.groovy | 20 - .../dshackle/testing/trial/ProtoClient.groovy | 64 - .../dshackle/testing/trial/ProxyClient.groovy | 83 - .../trial/basicproxy/DispatchSpec.groovy | 63 - .../trial/basicproxy/GivesErrorSpec.groovy | 74 - .../basicproxy/HardcodedCallsSpec.groovy | 36 - .../trial/basicproxy/MetamaskCallSpec.groovy | 20 - .../trial/basicproxy/StandardCallsSpec.groovy | 166 - .../testing/trial/mainnet/GetBlockSpec.groovy | 40 - .../trial/rinkeby/CallContractSpec.groovy | 30 - 43 files changed, 2 insertions(+), 8292 deletions(-) rename {testing/dshackle => src/test/resources/signer}/test_key (100%) rename {testing/dshackle => src/test/resources/signer}/test_key.pub (100%) delete mode 100644 testing/.gitignore delete mode 100644 testing/README.adoc delete mode 100644 testing/dshackle/README.adoc delete mode 100644 testing/dshackle/dshackle-basic.yaml delete mode 100644 testing/dshackle/dshackle-real.yaml delete mode 100644 testing/dshackle/dshackle-rinkeby.yaml delete mode 100644 testing/simple-upstream/README.adoc delete mode 100644 testing/simple-upstream/build.gradle delete mode 100644 testing/simple-upstream/settings.gradle delete mode 100644 testing/simple-upstream/src/main/groovy/testing/BlocksHandler.groovy delete mode 100644 testing/simple-upstream/src/main/groovy/testing/CallHandler.groovy delete mode 100644 testing/simple-upstream/src/main/groovy/testing/CommonHandlers.groovy delete mode 100644 testing/simple-upstream/src/main/groovy/testing/InternalHandler.groovy delete mode 100644 testing/simple-upstream/src/main/groovy/testing/InvalidCallHandler.groovy delete mode 100644 testing/simple-upstream/src/main/groovy/testing/PingPongHandler.groovy delete mode 100644 testing/simple-upstream/src/main/groovy/testing/ResourceResponse.groovy delete mode 100644 testing/simple-upstream/src/main/groovy/testing/SimpleUpstream.groovy delete mode 100644 testing/simple-upstream/src/main/groovy/testing/TestcaseHandler.groovy delete mode 100644 testing/simple-upstream/src/main/resources/block-0x100000.json delete mode 100644 testing/simple-upstream/src/main/resources/block-0x100001.json delete mode 100644 testing/simple-upstream/src/main/resources/chain-id.json delete mode 100644 testing/simple-upstream/src/main/resources/trace-0xd949bc.json delete mode 100644 testing/simple-upstream/src/main/resources/tx-0x01c5a8461d06c2c195035c148af0f871c7679841d86ae5bb98676bb2d8e68dfa.json delete mode 100644 testing/simple-upstream/src/main/resources/tx-0x146b8f4b6300c73bb7476359b9f1c5ee3f686a86b2aa673552cf0f9de9a42e77.json delete mode 100644 testing/simple-upstream/src/main/resources/tx-0xb4216e88df6ebfe666bbe43370d1ddfe8d9c1975d2b8375a522700f7f59c3ed0.json delete mode 100644 testing/simple-upstream/src/main/resources/tx-0xe589a39acea3091b584b650158d08b159aa07e97b8e8cddb8f81cb606e13382e.json delete mode 100644 testing/trial/README.adoc delete mode 100644 testing/trial/build.gradle delete mode 100644 testing/trial/settings.gradle delete mode 100644 testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/Client.groovy delete mode 100644 testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/Debugger.groovy delete mode 100644 testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/ProtoClient.groovy delete mode 100644 testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/ProxyClient.groovy delete mode 100644 testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/DispatchSpec.groovy delete mode 100644 testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/GivesErrorSpec.groovy delete mode 100644 testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/HardcodedCallsSpec.groovy delete mode 100644 testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/MetamaskCallSpec.groovy delete mode 100644 testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/StandardCallsSpec.groovy delete mode 100644 testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/mainnet/GetBlockSpec.groovy delete mode 100644 testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/rinkeby/CallContractSpec.groovy diff --git a/src/test/groovy/io/emeraldpay/dshackle/upstream/signature/EcdsaSignerSpec.groovy b/src/test/groovy/io/emeraldpay/dshackle/upstream/signature/EcdsaSignerSpec.groovy index 668b5abc..98a8acbb 100644 --- a/src/test/groovy/io/emeraldpay/dshackle/upstream/signature/EcdsaSignerSpec.groovy +++ b/src/test/groovy/io/emeraldpay/dshackle/upstream/signature/EcdsaSignerSpec.groovy @@ -49,7 +49,7 @@ class EcdsaSignerSpec extends Specification { setup: def conf = new SignatureConfig() conf.enabled = true - conf.privateKey = "testing/dshackle/test_key" + conf.privateKey = "src/test/resources/signer/test_key" def signer = new ResponseSignerFactory(conf).getObject() as EcdsaSigner // To verify the test, check the hash of test key above: @@ -114,7 +114,7 @@ class EcdsaSignerSpec extends Specification { def conf = new SignatureConfig() conf.enabled = true - conf.privateKey = "testing/dshackle/test_key" + conf.privateKey = "src/test/resources/signer/test_key" def factory = new ResponseSignerFactory(conf) def sk = factory.readKey(conf.algorithm, conf.privateKey).first diff --git a/testing/dshackle/test_key b/src/test/resources/signer/test_key similarity index 100% rename from testing/dshackle/test_key rename to src/test/resources/signer/test_key diff --git a/testing/dshackle/test_key.pub b/src/test/resources/signer/test_key.pub similarity index 100% rename from testing/dshackle/test_key.pub rename to src/test/resources/signer/test_key.pub diff --git a/testing/.gitignore b/testing/.gitignore deleted file mode 100644 index e5a210d4..00000000 --- a/testing/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -gradlew -gradlew.bat -gradle/ \ No newline at end of file diff --git a/testing/README.adoc b/testing/README.adoc deleted file mode 100644 index 8027d983..00000000 --- a/testing/README.adoc +++ /dev/null @@ -1,104 +0,0 @@ -= Dshackle Integration Testing - -Test for a correct work using a simulation of different upstream behaviours and checking the Dshackle against it. - -.Modules: -- `dshackle` - Dshackle config used for testing environment -- `simple-upstream` - upstream simulator with predefines responses -- `trial` - actual tests - -== How to run - -NOTE: Run commands in project's root dir - -NOTE: You need to open multiple consoles, since each command runs on foreground - -== Basic Test - -Makes some basic checks with a mocked upstreams - -=== Run upstream emulator - -.Runs two instances of RPC server -[source,bash] ----- -DSHACKLE_TESTUP_PORT=18545 ./gradlew -p testing/simple-upstream run -DSHACKLE_TESTUP_PORT=18546 ./gradlew -p testing/simple-upstream run ----- - -=== Run Dshackle - -[source,bash] ----- -./gradlew run --args="--configPath=./testing/dshackle/dshackle-basic.yaml" ----- - -=== Run tests - -[source,bash] ----- -./testing/trial/gradlew -p testing/trial -PdshackleTrialMode=basic cleanTest test ----- - -== Real (Mainnet) Test - -=== Run Dshackle - -First you have to provide configuration to an upstream connected to the mainnet. -It may be a local Geth instance, or an other provider, like Infura (note that the test config doesn't support TLS or other auth) - -[source,bash] ----- -export DSHACKLE_TEST_ETH1_RPC= -export DSHACKLE_TEST_ETH1_WS= -export DSHACKLE_TEST_ETH1_WSORIGIN= ----- - -For a local Geth it would be: - -[source,bash] ----- -export DSHACKLE_TEST_ETH1_RPC=http://127.0.0.1:8545 -export DSHACKLE_TEST_ETH1_WS=ws://127.0.0.1:8546 -export DSHACKLE_TEST_ETH1_WSORIGIN=http://127.0.0.1:8546 ----- - -Finally, run the Dshackle instance: - -[source,bash] ----- -./gradlew run --args="--configPath=./testing/dshackle/dshackle-real.yaml" ----- - -=== Run tests - -[source,bash] ----- -./testing/trial/gradlew -p testing/trial -PdshackleTrialMode=real cleanTest test ----- - -== Real (Rinkeby) Test - -Runs requests against a Rinkeby Testnet. -Configuration is similar to the Mainnet config, but instead of `ETH1` is has `RINKEBY`. - -[source,bash] ----- -export DSHACKLE_TEST_RINKEBY_RPC= -export DSHACKLE_TEST_RINKEBY_WS= -export DSHACKLE_TEST_RINKEBY_WSORIGIN= ----- - -And run the Dshackle instance: - -[source,bash] ----- -./gradlew run --args="--configPath=./testing/dshackle/dshackle-rinkeby.yaml" ----- - -=== Run tests - -[source,bash] ----- -./testing/trial/gradlew -p testing/trial -PdshackleTrialMode=rinkeby cleanTest test ----- diff --git a/testing/dshackle/README.adoc b/testing/dshackle/README.adoc deleted file mode 100644 index 46dc3bc3..00000000 --- a/testing/dshackle/README.adoc +++ /dev/null @@ -1,14 +0,0 @@ -= Testing Server - -.Run from project root directory: -[source,bash] ----- -./gradlew run --args="--configPath=./testing/dshackle/dshackle-mock.yaml" ----- - -or - -[source,bash] ----- -./gradlew run --args="--configPath=./testing/dshackle/dshackle-real.yaml" ----- diff --git a/testing/dshackle/dshackle-basic.yaml b/testing/dshackle/dshackle-basic.yaml deleted file mode 100644 index 56515c78..00000000 --- a/testing/dshackle/dshackle-basic.yaml +++ /dev/null @@ -1,50 +0,0 @@ -version: v1 -port: 12448 - -tls: - enabled: false - -cluster: - upstreams: - - id: test-1 - node-id: 1 - chain: ethereum - methods: - enabled: - - name: debug_traceTransaction - - name: test_foo - options: - disable-validation: true - connection: - ethereum-pos: - execution: - rpc: - url: "http://localhost:18545" - - - id: test-2 - node-id: 2 - chain: ethereum - options: - disable-validation: true - connection: - execution: - ethereum-pos: - rpc: - url: "http://localhost:18546" - -cache: - redis: - enabled: false - -signed-response: - enabled: true - algorithm: SECP256K1 - private-key: "./test_key" - -proxy: - port: 18080 - tls: - enabled: false - routes: - - id: eth - blockchain: ethereum \ No newline at end of file diff --git a/testing/dshackle/dshackle-real.yaml b/testing/dshackle/dshackle-real.yaml deleted file mode 100644 index a8e289f0..00000000 --- a/testing/dshackle/dshackle-real.yaml +++ /dev/null @@ -1,30 +0,0 @@ -version: v1 -port: 12448 - -tls: - enabled: false - -cluster: - upstreams: - - id: eth-1 - chain: ethereum - connection: - ethereum: - rpc: - url: "${DSHACKLE_TEST_ETH1_RPC}" - ws: - url: "${DSHACKLE_TEST_ETH1_WS}" - origin: "${DSHACKLE_TEST_ETH1_WSORIGIN}" - -cache: - redis: - enabled: false - -proxy: - port: 18081 - preserve-batch-order: true - tls: - enabled: false - routes: - - id: eth - blockchain: ethereum \ No newline at end of file diff --git a/testing/dshackle/dshackle-rinkeby.yaml b/testing/dshackle/dshackle-rinkeby.yaml deleted file mode 100644 index e0e1d3a8..00000000 --- a/testing/dshackle/dshackle-rinkeby.yaml +++ /dev/null @@ -1,26 +0,0 @@ -version: v1 -port: 12448 - -tls: - enabled: false - -cluster: - upstreams: - - id: rinkeby-1 - chain: rinkeby - connection: - ethereum: - rpc: - url: "${DSHACKLE_TEST_RINKEBY_RPC}" - -cache: - redis: - enabled: false - -proxy: - port: 18081 - tls: - enabled: false - routes: - - id: rinkeby - blockchain: rinkeby \ No newline at end of file diff --git a/testing/simple-upstream/README.adoc b/testing/simple-upstream/README.adoc deleted file mode 100644 index caab006c..00000000 --- a/testing/simple-upstream/README.adoc +++ /dev/null @@ -1,6 +0,0 @@ -= Simple Testing Upstream - -.Run from current directory ----- -./gradlew run ----- \ No newline at end of file diff --git a/testing/simple-upstream/build.gradle b/testing/simple-upstream/build.gradle deleted file mode 100644 index 72b72e50..00000000 --- a/testing/simple-upstream/build.gradle +++ /dev/null @@ -1,22 +0,0 @@ -plugins { - id 'java' - id 'groovy' - id 'idea' - id 'application' -} - -repositories { - mavenLocal() - mavenCentral() -} - -dependencies { - implementation "com.sparkjava:spark-core:2.9.1" - implementation "org.codehaus.groovy:groovy:3.0.4" - implementation "com.fasterxml.jackson.core:jackson-core:2.9.8" - implementation "com.fasterxml.jackson.core:jackson-databind:2.9.8" -} - -application { - mainClassName = 'testing.SimpleUpstream' -} \ No newline at end of file diff --git a/testing/simple-upstream/settings.gradle b/testing/simple-upstream/settings.gradle deleted file mode 100644 index faa039c6..00000000 --- a/testing/simple-upstream/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -rootProject.name = 'dshackle-testing-simple-upstream' \ No newline at end of file diff --git a/testing/simple-upstream/src/main/groovy/testing/BlocksHandler.groovy b/testing/simple-upstream/src/main/groovy/testing/BlocksHandler.groovy deleted file mode 100644 index 11526f97..00000000 --- a/testing/simple-upstream/src/main/groovy/testing/BlocksHandler.groovy +++ /dev/null @@ -1,32 +0,0 @@ -package testing - -import com.fasterxml.jackson.databind.ObjectMapper - -class BlocksHandler implements CallHandler { - - ObjectMapper objectMapper - ResourceResponse resourceResponse - - BlocksHandler(ObjectMapper objectMapper) { - this.objectMapper = objectMapper - this.resourceResponse = new ResourceResponse(objectMapper) - } - - @Override - Result handle(String method, List params) { - if (method == "eth_blockNumber") { - return Result.ok("0x100001") - } - if (method == "eth_getBlockByNumber") { - String blockId = params[0] - println("get block $blockId") - return resourceResponse.respondWith("block-${blockId}.json") - } - if (method == "eth_getTransactionByHash") { - String txId = params[0] - return resourceResponse.respondWith("tx-${txId}.json") - } - return null - } - -} diff --git a/testing/simple-upstream/src/main/groovy/testing/CallHandler.groovy b/testing/simple-upstream/src/main/groovy/testing/CallHandler.groovy deleted file mode 100644 index 2eb2366f..00000000 --- a/testing/simple-upstream/src/main/groovy/testing/CallHandler.groovy +++ /dev/null @@ -1,48 +0,0 @@ -package testing - -interface CallHandler { - - Result handle(String method, List params) - - static class Result { - private Object result - private Integer errorCode - private String errorMessage - private Object errorDetails - - Result(Object result, Integer errorCode, String errorMessage, Object errorDetails) { - this.result = result - this.errorCode = errorCode - this.errorMessage = errorMessage - this.errorDetails = errorDetails - } - - static Result ok(Object result) { - return new Result(result, null, null, null) - } - - static Result error(int errorCode, String errorMessage, Object details = null) { - return new Result(null, errorCode, errorMessage, details) - } - - boolean isResult() { - return errorCode == null - } - - Object getResult() { - return result - } - - int getErrorCode() { - return errorCode - } - - String getErrorMessage() { - return errorMessage - } - - Object getErrorDetails() { - return errorDetails - } - } -} \ No newline at end of file diff --git a/testing/simple-upstream/src/main/groovy/testing/CommonHandlers.groovy b/testing/simple-upstream/src/main/groovy/testing/CommonHandlers.groovy deleted file mode 100644 index cdfdec03..00000000 --- a/testing/simple-upstream/src/main/groovy/testing/CommonHandlers.groovy +++ /dev/null @@ -1,25 +0,0 @@ -package testing - -import com.fasterxml.jackson.databind.ObjectMapper - -class CommonHandlers implements CallHandler { - - ObjectMapper objectMapper - ResourceResponse resourceResponse - - CommonHandlers(ObjectMapper objectMapper) { - this.objectMapper = objectMapper - this.resourceResponse = new ResourceResponse(objectMapper) - } - - @Override - Result handle(String method, List params) { - if (method == "eth_syncing") { - return Result.ok(false) - } - if (method == "eth_chainId") { - return resourceResponse.respondWith("chain-id.json") - } - return null - } -} diff --git a/testing/simple-upstream/src/main/groovy/testing/InternalHandler.groovy b/testing/simple-upstream/src/main/groovy/testing/InternalHandler.groovy deleted file mode 100644 index 9fe926aa..00000000 --- a/testing/simple-upstream/src/main/groovy/testing/InternalHandler.groovy +++ /dev/null @@ -1,35 +0,0 @@ -package testing - -import java.time.Instant -import java.util.concurrent.atomic.AtomicInteger - -class InternalHandler implements CallHandler { - - private AtomicInteger ids = new AtomicInteger() - private List requests = new ArrayList() - - def record(String json) { - requests << new Item(ids.getAndIncrement(), json) - } - - @Override - Result handle(String method, List params) { - if (method == "eth_call" - && params[0].to?.toLowerCase() == "0x0123456789abcdef0123456789abcdef00000002".toLowerCase()) { - return Result.ok(Collections.unmodifiableList(requests)) - } - return null - } - - class Item { - Integer id - String timestamp - String json - - Item(Integer id, String json) { - this.id = id - this.timestamp = Instant.now().toString() - this.json = json - } - } -} diff --git a/testing/simple-upstream/src/main/groovy/testing/InvalidCallHandler.groovy b/testing/simple-upstream/src/main/groovy/testing/InvalidCallHandler.groovy deleted file mode 100644 index a2c6c4b0..00000000 --- a/testing/simple-upstream/src/main/groovy/testing/InvalidCallHandler.groovy +++ /dev/null @@ -1,8 +0,0 @@ -package testing - -class InvalidCallHandler implements CallHandler { - @Override - Result handle(String method, List params) { - return Result.error(-32000, "Call is not supported") - } -} diff --git a/testing/simple-upstream/src/main/groovy/testing/PingPongHandler.groovy b/testing/simple-upstream/src/main/groovy/testing/PingPongHandler.groovy deleted file mode 100644 index 9babfbd6..00000000 --- a/testing/simple-upstream/src/main/groovy/testing/PingPongHandler.groovy +++ /dev/null @@ -1,12 +0,0 @@ -package testing - -class PingPongHandler implements CallHandler { - @Override - Result handle(String method, List params) { - if (method == "eth_call" - && params[0].to?.toLowerCase() == "0x0123456789abcdef0123456789abcdef00000001".toLowerCase()) { - return Result.ok([data: params[0].data]) - } - return null - } -} diff --git a/testing/simple-upstream/src/main/groovy/testing/ResourceResponse.groovy b/testing/simple-upstream/src/main/groovy/testing/ResourceResponse.groovy deleted file mode 100644 index 46a1084b..00000000 --- a/testing/simple-upstream/src/main/groovy/testing/ResourceResponse.groovy +++ /dev/null @@ -1,25 +0,0 @@ -package testing - -import com.fasterxml.jackson.databind.ObjectMapper - -class ResourceResponse { - - ObjectMapper objectMapper - - ResourceResponse(ObjectMapper objectMapper) { - this.objectMapper = objectMapper - } - - Object getResource(String name) { - String json = BlocksHandler.class.getResourceAsStream("/" + name)?.text - if (json == null) { - return null - } - return objectMapper.readValue(json, Map) - } - - CallHandler.Result respondWith(String name) { - return CallHandler.Result.ok(getResource(name)) - } - -} diff --git a/testing/simple-upstream/src/main/groovy/testing/SimpleUpstream.groovy b/testing/simple-upstream/src/main/groovy/testing/SimpleUpstream.groovy deleted file mode 100644 index b1af5642..00000000 --- a/testing/simple-upstream/src/main/groovy/testing/SimpleUpstream.groovy +++ /dev/null @@ -1,73 +0,0 @@ -package testing - -import com.fasterxml.jackson.databind.ObjectMapper -import spark.Spark - -class SimpleUpstream { - - private int port = System.getenv("DSHACKLE_TESTUP_PORT")?.toInteger() ?: 18545 - private ObjectMapper objectMapper - - private List handlers = [] - private InternalHandler internalHandler - - void prepare() { - objectMapper = new ObjectMapper() - - internalHandler = new InternalHandler() - - handlers << new TestcaseHandler(objectMapper) - handlers << new CommonHandlers(objectMapper) - handlers << new BlocksHandler(objectMapper) - handlers << new PingPongHandler() - handlers << internalHandler - - handlers << new InvalidCallHandler() - } - - void start() { - println("Starting upstream on 0.0.0.0:$port") - Spark.port(port) - Spark.post("/") { req, resp -> - try { - def requestBody = req.body() - println("request: $requestBody") - internalHandler.record(requestBody) - Map json = objectMapper.readValue(requestBody, Map) - def id = json["id"] - String method = json["method"].toString() - List params = json.containsKey("params") ? json["params"] as List : [] - - CallHandler.Result result = handlers.findResult { h -> - return h.handle(method, params) - } - Map resultJson = [ - id : id, - jsonrpc: "2.0" - ] - if (result.isResult()) { - resultJson["result"] = result.result - } else { - resultJson["error"] = [ - code : result.getErrorCode(), - message: result.getErrorMessage() - ] - if (result.getErrorDetails() != null) { - resultJson["error"]["data"] = result.getErrorDetails() - } - } - resp.status(200) - resp.header("content-type", "application/json") - return objectMapper.writeValueAsString(resultJson) - } catch (Throwable t) { - t.printStackTrace() - } - } - } - - public static void main(String[] args) { - def server = new SimpleUpstream() - server.prepare() - server.start() - } -} diff --git a/testing/simple-upstream/src/main/groovy/testing/TestcaseHandler.groovy b/testing/simple-upstream/src/main/groovy/testing/TestcaseHandler.groovy deleted file mode 100644 index 1f7dfbdd..00000000 --- a/testing/simple-upstream/src/main/groovy/testing/TestcaseHandler.groovy +++ /dev/null @@ -1,44 +0,0 @@ -package testing - -import com.fasterxml.jackson.databind.ObjectMapper - -class TestcaseHandler implements CallHandler { - - ObjectMapper objectMapper - ResourceResponse resourceResponse - - TestcaseHandler(ObjectMapper objectMapper) { - this.objectMapper = objectMapper - this.resourceResponse = new ResourceResponse(objectMapper) - } - - @Override - Result handle(String method, List params) { - // https://github.com/emeraldpay/dshackle/issues/35 - if (method == "eth_call" - && params[0].to?.toLowerCase() == "0x542156d51D10Db5acCB99f9Db7e7C91B74E80a2c".toLowerCase()) { - return Result.error(-32015, "VM execution error.") - } - // https://github.com/emeraldpay/dshackle/issues/35 (second) - if (method == "eth_call" - && params[0].to?.toLowerCase() == "0x8ee2a5aca4f88cb8c757b8593d0734855dcc0eba".toLowerCase()) { - return Result.error(-32015, "VM execution error.", "revert: SafeMath: division by zero") - } - // https://github.com/emeraldpay/dshackle/issues/43 - if (method == "debug_traceTransaction" - && params[0].toLowerCase() == "0xd949bc0fe1a5d16f4522bc47933554dcc4ada0493ff71ee1973b2410257af9fe".toLowerCase()) { - return resourceResponse.respondWith("trace-0xd949bc.json") - } - // https://github.com/emeraldpay/dshackle/issues/67 - if (method == "eth_call" - && params[0].to?.toLowerCase() == "0xdAC17F958D2ee523a2206206994597C13D831ec7".toLowerCase()) { - return Result.error(-32000, "invalid opcode: opcode 0xfe not defined") - } - // https://github.com/emeraldpay/dshackle/issues/67, when a custom method configured - if (method == "test_foo" - && params[0].to?.toLowerCase() == "0xdAC17F958D2ee523a2206206994597C13D831ec7".toLowerCase()) { - return Result.error(-32000, "invalid opcode: opcode 0xfe not defined") - } - return null - } -} diff --git a/testing/simple-upstream/src/main/resources/block-0x100000.json b/testing/simple-upstream/src/main/resources/block-0x100000.json deleted file mode 100644 index de58ca1b..00000000 --- a/testing/simple-upstream/src/main/resources/block-0x100000.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "difficulty": "0xc6d2fa46fd6", - "extraData": "0xd783010400844765746887676f312e352e31856c696e7578", - "gasLimit": "0x2fefd8", - "gasUsed": "0xa410", - "hash": "0x9a834c53bbee9c2665a5a84789a1d1ad73750b2d77b50de44f457f411d02e52e", - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "miner": "0x68795c4aa09d6f4ed3e5deddf8c2ad3049a601da", - "mixHash": "0x72224fd0b7b32d0fea13f2953eba28d2512af43632725ed75583dd30e42dfc64", - "nonce": "0xf1a453a44f9de627", - "number": "0x100000", - "parentHash": "0x2dcaf9a8a3fd329d925eb47c1f22022d4f2d562500e546d878bad4247d013858", - "receiptsRoot": "0x178000485de197ed06a4ebada431864e5b564b43f994fb8888521f74b4b3257b", - "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", - "size": "0x303", - "stateRoot": "0xeaddaa0b6b673ba3f8cb7235ca656340ccf703295cf5252cb04a4202c47252c2", - "timestamp": "0x56cc7b73", - "totalDifficulty": "0x6bab93cdf810b22a", - "transactions": [ - "0x01c5a8461d06c2c195035c148af0f871c7679841d86ae5bb98676bb2d8e68dfa", - "0xb4216e88df6ebfe666bbe43370d1ddfe8d9c1975d2b8375a522700f7f59c3ed0" - ], - "transactionsRoot": "0x91d9b419b34a790cc2a7d59c6b95e57ccc5ec9bc1034ce9510dfb551d3049c93", - "uncles": [] -} \ No newline at end of file diff --git a/testing/simple-upstream/src/main/resources/block-0x100001.json b/testing/simple-upstream/src/main/resources/block-0x100001.json deleted file mode 100644 index 0fca9d14..00000000 --- a/testing/simple-upstream/src/main/resources/block-0x100001.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "difficulty": "0xc6ba1fe7c49", - "extraData": "0xd783010400844765746887676f312e352e31856c696e7578", - "gasLimit": "0x2fefd8", - "gasUsed": "0xa410", - "hash": "0x18c68d9ba58772a4409d65d61891b25db03a105a7769ae08ef2cff697921b446", - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "miner": "0x0c729be7c39543c3d549282a40395299d987cec2", - "mixHash": "0xf8679fe0f04d5aad4844694cc8fb1a1b97482a5822658379c9bb8633f91daf97", - "nonce": "0x347a267c0ec88618", - "number": "0x100001", - "parentHash": "0x9a834c53bbee9c2665a5a84789a1d1ad73750b2d77b50de44f457f411d02e52e", - "receiptsRoot": "0x4f4ed1139baadbd4506d6b0c330335d2108715095fb93fd282bd69aa9edc09eb", - "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", - "size": "0x304", - "stateRoot": "0xee13382462fcd5748a403ca131c38e871fa7206bca2b962f67b59e800741daa3", - "timestamp": "0x56cc7b8c", - "totalDifficulty": "0x6baba0399a0f2e73", - "transactions": [ - "0x146b8f4b6300c73bb7476359b9f1c5ee3f686a86b2aa673552cf0f9de9a42e77", - "0xe589a39acea3091b584b650158d08b159aa07e97b8e8cddb8f81cb606e13382e" - ], - "transactionsRoot": "0xc90078e2af52aef81815cb2a71c22ebd781dd658dd953d9df57f7769a0b2fe51", - "uncles": [], - "testFoo": "bar" -} \ No newline at end of file diff --git a/testing/simple-upstream/src/main/resources/chain-id.json b/testing/simple-upstream/src/main/resources/chain-id.json deleted file mode 100644 index c318e9d3..00000000 --- a/testing/simple-upstream/src/main/resources/chain-id.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "id": 83, - "jsonrpc": "2.0", - "result": "0x3d" -} \ No newline at end of file diff --git a/testing/simple-upstream/src/main/resources/trace-0xd949bc.json b/testing/simple-upstream/src/main/resources/trace-0xd949bc.json deleted file mode 100644 index d3f56e8a..00000000 --- a/testing/simple-upstream/src/main/resources/trace-0xd949bc.json +++ /dev/null @@ -1,6966 +0,0 @@ -{ - "jsonrpc": "2.0", - "result": { - "gas": "0x75a2", - "failed": false, - "returnValue": "0x", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 410732, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [], - "memory": [], - "storage": {} - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 410729, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {} - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 410726, - "gasCost": 12, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 5, - "op": "PUSH1", - "gas": 410714, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 7, - "op": "CALLDATASIZE", - "gas": 410711, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 8, - "op": "LT", - "gas": 410709, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000003a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 9, - "op": "PUSH2", - "gas": 410706, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 12, - "op": "JUMPI", - "gas": 410703, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 13, - "op": "PUSH1", - "gas": 410693, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 15, - "op": "CALLDATALOAD", - "gas": 410690, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 16, - "op": "PUSH1", - "gas": 410687, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000007500000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 18, - "op": "SHR", - "gas": 410684, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000007500000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 19, - "op": "DUP1", - "gas": 410681, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 20, - "op": "PUSH4", - "gas": 410678, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 25, - "op": "GT", - "gas": 410675, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000044f541ae" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 26, - "op": "PUSH2", - "gas": 410672, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 29, - "op": "JUMPI", - "gas": 410669, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000007f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 127, - "op": "JUMPDEST", - "gas": 410659, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 128, - "op": "DUP1", - "gas": 410658, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 129, - "op": "PUSH1", - "gas": 410655, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 131, - "op": "GT", - "gas": 410652, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000d7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 132, - "op": "PUSH2", - "gas": 410649, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 135, - "op": "JUMPI", - "gas": 410646, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 170, - "op": "JUMPDEST", - "gas": 410636, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 171, - "op": "DUP1", - "gas": 410635, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 172, - "op": "PUSH1", - "gas": 410632, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 174, - "op": "EQ", - "gas": 410629, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000075", - "000000000000000000000000000000000000000000000000000000000000002c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 175, - "op": "PUSH2", - "gas": 410626, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 178, - "op": "JUMPI", - "gas": 410623, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 179, - "op": "DUP1", - "gas": 410613, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 180, - "op": "PUSH1", - "gas": 410610, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 182, - "op": "EQ", - "gas": 410607, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 183, - "op": "PUSH2", - "gas": 410604, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 186, - "op": "JUMPI", - "gas": 410601, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 245, - "op": "JUMPDEST", - "gas": 410591, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 246, - "op": "CALLVALUE", - "gas": 410590, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 247, - "op": "DUP1", - "gas": 410588, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 248, - "op": "ISZERO", - "gas": 410585, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 249, - "op": "PUSH2", - "gas": 410582, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 252, - "op": "JUMPI", - "gas": 410579, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000101" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 257, - "op": "JUMPDEST", - "gas": 410569, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 258, - "op": "POP", - "gas": 410568, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 259, - "op": "PUSH2", - "gas": 410566, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 262, - "op": "PUSH2", - "gas": 410563, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 265, - "op": "CALLDATASIZE", - "gas": 410560, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 266, - "op": "PUSH1", - "gas": 410558, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 268, - "op": "PUSH2", - "gas": 410555, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 271, - "op": "JUMP", - "gas": 410552, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000eed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3821, - "op": "JUMPDEST", - "gas": 410544, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3822, - "op": "PUSH1", - "gas": 410543, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3824, - "op": "DUP1", - "gas": 410540, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3825, - "op": "PUSH1", - "gas": 410537, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3827, - "op": "DUP1", - "gas": 410534, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3828, - "op": "PUSH1", - "gas": 410531, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3830, - "op": "DUP1", - "gas": 410528, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3831, - "op": "PUSH1", - "gas": 410525, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3833, - "op": "DUP8", - "gas": 410522, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3834, - "op": "DUP10", - "gas": 410519, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3835, - "op": "SUB", - "gas": 410516, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000003a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3836, - "op": "SLT", - "gas": 410513, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000003a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3837, - "op": "ISZERO", - "gas": 410510, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3838, - "op": "PUSH2", - "gas": 410507, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3841, - "op": "JUMPI", - "gas": 410504, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000f05" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3845, - "op": "JUMPDEST", - "gas": 410494, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3846, - "op": "PUSH2", - "gas": 410493, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3849, - "op": "DUP9", - "gas": 410490, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3850, - "op": "DUP9", - "gas": 410487, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3851, - "op": "PUSH2", - "gas": 410484, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3854, - "op": "JUMP", - "gas": 410481, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000c85" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3205, - "op": "JUMPDEST", - "gas": 410473, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3206, - "op": "DUP1", - "gas": 410472, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3207, - "op": "CALLDATALOAD", - "gas": 410469, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3208, - "op": "PUSH1", - "gas": 410466, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3210, - "op": "DUP2", - "gas": 410463, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000ff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3211, - "op": "AND", - "gas": 410460, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000ff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3212, - "op": "DUP2", - "gas": 410457, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3213, - "op": "EQ", - "gas": 410454, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3214, - "op": "PUSH2", - "gas": 410451, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3217, - "op": "JUMPI", - "gas": 410448, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000009b2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 2482, - "op": "JUMPDEST", - "gas": 410438, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 2483, - "op": "SWAP3", - "gas": 410437, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 2484, - "op": "SWAP2", - "gas": 410434, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000f0f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 2485, - "op": "POP", - "gas": 410431, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000003a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 2486, - "op": "POP", - "gas": 410429, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000f0f", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 2487, - "op": "JUMP", - "gas": 410427, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000f0f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3855, - "op": "JUMPDEST", - "gas": 410419, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3856, - "op": "SWAP6", - "gas": 410418, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3857, - "op": "POP", - "gas": 410415, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3858, - "op": "PUSH1", - "gas": 410413, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3860, - "op": "DUP8", - "gas": 410410, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3861, - "op": "ADD", - "gas": 410407, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3862, - "op": "CALLDATALOAD", - "gas": 410404, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3863, - "op": "PUSH2", - "gas": 410401, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3866, - "op": "DUP2", - "gas": 410398, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3867, - "op": "PUSH2", - "gas": 410395, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3870, - "op": "JUMP", - "gas": 410392, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000fbf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4031, - "op": "JUMPDEST", - "gas": 410384, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4032, - "op": "PUSH20", - "gas": 410383, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4053, - "op": "DUP2", - "gas": 410380, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4054, - "op": "AND", - "gas": 410377, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4055, - "op": "DUP2", - "gas": 410374, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4056, - "op": "EQ", - "gas": 410371, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4057, - "op": "PUSH2", - "gas": 410368, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 4060, - "op": "JUMPI", - "gas": 410365, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000ace" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 2766, - "op": "JUMPDEST", - "gas": 410355, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 2767, - "op": "POP", - "gas": 410354, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 2768, - "op": "JUMP", - "gas": 410352, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000f1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3871, - "op": "JUMPDEST", - "gas": 410344, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3872, - "op": "SWAP5", - "gas": 410343, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3873, - "op": "POP", - "gas": 410340, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3874, - "op": "PUSH1", - "gas": 410338, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3876, - "op": "DUP8", - "gas": 410335, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3877, - "op": "ADD", - "gas": 410332, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3878, - "op": "CALLDATALOAD", - "gas": 410329, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3879, - "op": "SWAP4", - "gas": 410326, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3880, - "op": "POP", - "gas": 410323, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3881, - "op": "PUSH1", - "gas": 410321, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3883, - "op": "DUP8", - "gas": 410318, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3884, - "op": "ADD", - "gas": 410315, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3885, - "op": "CALLDATALOAD", - "gas": 410312, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3886, - "op": "SWAP3", - "gas": 410309, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3887, - "op": "POP", - "gas": 410306, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3888, - "op": "PUSH1", - "gas": 410304, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3890, - "op": "DUP8", - "gas": 410301, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3891, - "op": "ADD", - "gas": 410298, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3892, - "op": "CALLDATALOAD", - "gas": 410295, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3893, - "op": "PUSH8", - "gas": 410292, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3902, - "op": "DUP2", - "gas": 410289, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3903, - "op": "GT", - "gas": 410286, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3904, - "op": "ISZERO", - "gas": 410283, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3905, - "op": "PUSH2", - "gas": 410280, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3908, - "op": "JUMPI", - "gas": 410277, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000f48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3912, - "op": "JUMPDEST", - "gas": 410267, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3913, - "op": "PUSH2", - "gas": 410266, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3916, - "op": "DUP10", - "gas": 410263, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3917, - "op": "DUP3", - "gas": 410260, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3918, - "op": "DUP11", - "gas": 410257, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3919, - "op": "ADD", - "gas": 410254, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3920, - "op": "PUSH2", - "gas": 410251, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3923, - "op": "JUMP", - "gas": 410248, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000c45" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3141, - "op": "JUMPDEST", - "gas": 410240, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3142, - "op": "PUSH1", - "gas": 410239, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3144, - "op": "DUP1", - "gas": 410236, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3145, - "op": "DUP4", - "gas": 410233, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3146, - "op": "PUSH1", - "gas": 410230, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3148, - "op": "DUP5", - "gas": 410227, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003a4", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3149, - "op": "ADD", - "gas": 410224, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003a4", - "000000000000000000000000000000000000000000000000000000000000001f", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3150, - "op": "SLT", - "gas": 410221, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000c3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3151, - "op": "PUSH2", - "gas": 410218, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3154, - "op": "JUMPI", - "gas": 410215, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c56" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3158, - "op": "JUMPDEST", - "gas": 410205, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3159, - "op": "POP", - "gas": 410204, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3160, - "op": "DUP2", - "gas": 410202, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3161, - "op": "CALLDATALOAD", - "gas": 410199, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3162, - "op": "PUSH8", - "gas": 410196, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3171, - "op": "DUP2", - "gas": 410193, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3172, - "op": "GT", - "gas": 410190, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3173, - "op": "ISZERO", - "gas": 410187, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3174, - "op": "PUSH2", - "gas": 410184, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3177, - "op": "JUMPI", - "gas": 410181, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c6d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3181, - "op": "JUMPDEST", - "gas": 410171, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3182, - "op": "PUSH1", - "gas": 410170, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3184, - "op": "DUP4", - "gas": 410167, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3185, - "op": "ADD", - "gas": 410164, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3186, - "op": "SWAP2", - "gas": 410161, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3187, - "op": "POP", - "gas": 410158, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3188, - "op": "DUP4", - "gas": 410156, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3189, - "op": "PUSH1", - "gas": 410153, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000003a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3191, - "op": "DUP3", - "gas": 410150, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3192, - "op": "DUP6", - "gas": 410147, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3193, - "op": "ADD", - "gas": 410144, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3194, - "op": "ADD", - "gas": 410141, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000368" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3195, - "op": "GT", - "gas": 410138, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000388" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3196, - "op": "ISZERO", - "gas": 410135, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3197, - "op": "PUSH2", - "gas": 410132, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3200, - "op": "JUMPI", - "gas": 410129, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c3e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3134, - "op": "JUMPDEST", - "gas": 410119, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3135, - "op": "SWAP3", - "gas": 410118, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000003a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3136, - "op": "POP", - "gas": 410115, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000003a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3137, - "op": "SWAP3", - "gas": 410113, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3138, - "op": "SWAP1", - "gas": 410110, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3139, - "op": "POP", - "gas": 410107, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000d9f", - "00000000000000000000000000000000000000000000000000000000000000a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3140, - "op": "JUMP", - "gas": 410105, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3487, - "op": "JUMPDEST", - "gas": 410097, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3488, - "op": "SWAP8", - "gas": 410096, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3489, - "op": "SWAP11", - "gas": 410093, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3490, - "op": "SWAP7", - "gas": 410090, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3491, - "op": "SWAP10", - "gas": 410087, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3492, - "op": "POP", - "gas": 410084, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000003a4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3493, - "op": "SWAP5", - "gas": 410082, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3494, - "op": "SWAP8", - "gas": 410079, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3495, - "op": "POP", - "gas": 410076, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3496, - "op": "SWAP3", - "gas": 410074, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3497, - "op": "SWAP6", - "gas": 410071, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3498, - "op": "SWAP4", - "gas": 410068, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3499, - "op": "SWAP5", - "gas": 410065, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000110", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3500, - "op": "SWAP3", - "gas": 410062, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3501, - "op": "POP", - "gas": 410059, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3502, - "op": "POP", - "gas": 410057, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3503, - "op": "POP", - "gas": 410055, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 3504, - "op": "JUMP", - "gas": 410053, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 272, - "op": "JUMPDEST", - "gas": 410045, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 273, - "op": "PUSH2", - "gas": 410044, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 276, - "op": "JUMP", - "gas": 410041, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000301" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 769, - "op": "JUMPDEST", - "gas": 410033, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 770, - "op": "CALLER", - "gas": 410032, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 771, - "op": "PUSH1", - "gas": 410030, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 773, - "op": "SWAP1", - "gas": 410027, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 774, - "op": "DUP2", - "gas": 410024, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 775, - "op": "MSTORE", - "gas": 410021, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 776, - "op": "PUSH1", - "gas": 410018, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 778, - "op": "PUSH1", - "gas": 410015, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 780, - "op": "MSTORE", - "gas": 410012, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 781, - "op": "PUSH1", - "gas": 410009, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 783, - "op": "SWAP1", - "gas": 410006, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 784, - "op": "SHA3", - "gas": 410003, - "gasCost": 42, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 785, - "op": "SLOAD", - "gas": 409961, - "gasCost": 800, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "e9aa3362e80077d4621a0bff76fcb780a24af5780c4fe4325784108d311c437e" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 786, - "op": "PUSH1", - "gas": 409161, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 788, - "op": "AND", - "gas": 409158, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000ff" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 789, - "op": "PUSH2", - "gas": 409155, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 792, - "op": "JUMPI", - "gas": 409152, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000031d" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 797, - "op": "JUMPDEST", - "gas": 409142, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 798, - "op": "DUP4", - "gas": 409141, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 799, - "op": "DUP6", - "gas": 409138, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 800, - "op": "PUSH20", - "gas": 409135, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 821, - "op": "AND", - "gas": 409132, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 822, - "op": "BALANCE", - "gas": 409129, - "gasCost": 700, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 823, - "op": "EQ", - "gas": 408429, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "00000000000000000000000000000000000000000000000087af04e132718c08" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 824, - "op": "ISZERO", - "gas": 408426, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 825, - "op": "PUSH2", - "gas": 408423, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 828, - "op": "JUMPI", - "gas": 408420, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000341" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 833, - "op": "JUMPDEST", - "gas": 408410, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 834, - "op": "PUSH1", - "gas": 408409, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 836, - "op": "DUP4", - "gas": 408406, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 837, - "op": "DUP2", - "gas": 408403, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 838, - "op": "MSTORE", - "gas": 408400, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 839, - "op": "PUSH1", - "gas": 408397, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 841, - "op": "DUP2", - "gas": 408394, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 842, - "op": "SWAP1", - "gas": 408391, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 843, - "op": "MSTORE", - "gas": 408388, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 844, - "op": "PUSH1", - "gas": 408385, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 846, - "op": "SWAP1", - "gas": 408382, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 847, - "op": "SHA3", - "gas": 408379, - "gasCost": 42, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 848, - "op": "SLOAD", - "gas": 408337, - "gasCost": 800, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "76b35ea2d6f8880562a4e7e8893ecaa75ab4dc70e56b5bee9dbc2bffff029cf4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 849, - "op": "PUSH1", - "gas": 407537, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 851, - "op": "AND", - "gas": 407534, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000ff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 852, - "op": "ISZERO", - "gas": 407531, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 853, - "op": "PUSH2", - "gas": 407528, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 856, - "op": "JUMPI", - "gas": 407525, - "gasCost": 10, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000035d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 857, - "op": "PUSH2", - "gas": 407515, - "gasCost": 3, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 860, - "op": "JUMP", - "gas": 407512, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4", - "0000000000000000000000000000000000000000000000000000000000000411" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1041, - "op": "JUMPDEST", - "gas": 407504, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1042, - "op": "POP", - "gas": 407503, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000002c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1043, - "op": "POP", - "gas": 407501, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "00000000000000000000000000000000000000000000000000000000000000c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1044, - "op": "POP", - "gas": 407499, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408", - "0000000000000000000000000000000000000000000000000005ab3eeacf3439" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1045, - "op": "POP", - "gas": 407497, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", - "00000000000000000000000000000000000000000000000087b5809dd6b1b408" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1046, - "op": "POP", - "gas": 407495, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1047, - "op": "POP", - "gas": 407493, - "gasCost": 2, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 1048, - "op": "JUMP", - "gas": 407491, - "gasCost": 8, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000000f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 243, - "op": "JUMPDEST", - "gas": 407483, - "gasCost": 1, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - }, - { - "pc": 244, - "op": "STOP", - "gas": 407482, - "gasCost": 0, - "depth": 1, - "error": null, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000075" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000005ab3eeacf3439", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} - } - ] - }, - "id": 1 -} \ No newline at end of file diff --git a/testing/simple-upstream/src/main/resources/tx-0x01c5a8461d06c2c195035c148af0f871c7679841d86ae5bb98676bb2d8e68dfa.json b/testing/simple-upstream/src/main/resources/tx-0x01c5a8461d06c2c195035c148af0f871c7679841d86ae5bb98676bb2d8e68dfa.json deleted file mode 100644 index 02cae64c..00000000 --- a/testing/simple-upstream/src/main/resources/tx-0x01c5a8461d06c2c195035c148af0f871c7679841d86ae5bb98676bb2d8e68dfa.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "blockHash": "0x9a834c53bbee9c2665a5a84789a1d1ad73750b2d77b50de44f457f411d02e52e", - "blockNumber": "0x100000", - "from": "0x68795c4aa09d6f4ed3e5deddf8c2ad3049a601da", - "gas": "0x15f90", - "gasPrice": "0xba43b7400", - "hash": "0x01c5a8461d06c2c195035c148af0f871c7679841d86ae5bb98676bb2d8e68dfa", - "input": "0x", - "nonce": "0x2f31", - "r": "0x1d263f32de00456cbc3e4099c623a6ca48e3188f01dd16461687512f8c3bb7d6", - "s": "0x62629f42a98f7c5fa60f8c3630cf67b5eb4772e0ff65a458d2116c15e22d6451", - "to": "0xdae787ec66e65c60ad35203800b97b45fcb0f909", - "transactionIndex": "0x0", - "v": "0x1b", - "value": "0x2b81097c919a9e000" -} \ No newline at end of file diff --git a/testing/simple-upstream/src/main/resources/tx-0x146b8f4b6300c73bb7476359b9f1c5ee3f686a86b2aa673552cf0f9de9a42e77.json b/testing/simple-upstream/src/main/resources/tx-0x146b8f4b6300c73bb7476359b9f1c5ee3f686a86b2aa673552cf0f9de9a42e77.json deleted file mode 100644 index c659e4d4..00000000 --- a/testing/simple-upstream/src/main/resources/tx-0x146b8f4b6300c73bb7476359b9f1c5ee3f686a86b2aa673552cf0f9de9a42e77.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "blockHash": "0x18c68d9ba58772a4409d65d61891b25db03a105a7769ae08ef2cff697921b446", - "blockNumber": "0x100001", - "from": "0x2a65aca4d5fc5b5c859090a6c34d164135398226", - "gas": "0x15f90", - "gasPrice": "0xba43b7400", - "hash": "0x146b8f4b6300c73bb7476359b9f1c5ee3f686a86b2aa673552cf0f9de9a42e77", - "input": "0x", - "nonce": "0x32c13", - "r": "0xe6ca408c2e91163b46c6bb66054a000a25b6c1d8024460499a185ab2e4bb41a0", - "s": "0x53bc43662fda46c2e7051fa704b75ec815e9102cca5400817011ffd99e77139d", - "to": "0x7388ae5bc873163025fffe5956322f734f9b570d", - "transactionIndex": "0x0", - "v": "0x1b", - "value": "0xe660f79cf5e4800" -} \ No newline at end of file diff --git a/testing/simple-upstream/src/main/resources/tx-0xb4216e88df6ebfe666bbe43370d1ddfe8d9c1975d2b8375a522700f7f59c3ed0.json b/testing/simple-upstream/src/main/resources/tx-0xb4216e88df6ebfe666bbe43370d1ddfe8d9c1975d2b8375a522700f7f59c3ed0.json deleted file mode 100644 index 7e1141f6..00000000 --- a/testing/simple-upstream/src/main/resources/tx-0xb4216e88df6ebfe666bbe43370d1ddfe8d9c1975d2b8375a522700f7f59c3ed0.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "blockHash": "0x9a834c53bbee9c2665a5a84789a1d1ad73750b2d77b50de44f457f411d02e52e", - "blockNumber": "0x100000", - "from": "0x68795c4aa09d6f4ed3e5deddf8c2ad3049a601da", - "gas": "0x15f90", - "gasPrice": "0xba43b7400", - "hash": "0xb4216e88df6ebfe666bbe43370d1ddfe8d9c1975d2b8375a522700f7f59c3ed0", - "input": "0x", - "nonce": "0x2f32", - "r": "0xc25ceef654cd3bd734201fc08589970e0663431121bc47cc4a70335e072b09c0", - "s": "0x1c67b037a59a8f5badde3a7eb586d7888dcf6dad64aabb080c4c0db593a91254", - "to": "0x04a2a3ee9c9ea82e1f918ece209f8a7e6d7521e7", - "transactionIndex": "0x1", - "v": "0x1c", - "value": "0x377fb2f2cbd73c00" -} \ No newline at end of file diff --git a/testing/simple-upstream/src/main/resources/tx-0xe589a39acea3091b584b650158d08b159aa07e97b8e8cddb8f81cb606e13382e.json b/testing/simple-upstream/src/main/resources/tx-0xe589a39acea3091b584b650158d08b159aa07e97b8e8cddb8f81cb606e13382e.json deleted file mode 100644 index a068d29a..00000000 --- a/testing/simple-upstream/src/main/resources/tx-0xe589a39acea3091b584b650158d08b159aa07e97b8e8cddb8f81cb606e13382e.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "blockHash": "0x18c68d9ba58772a4409d65d61891b25db03a105a7769ae08ef2cff697921b446", - "blockNumber": "0x100001", - "from": "0x2a65aca4d5fc5b5c859090a6c34d164135398226", - "gas": "0x15f90", - "gasPrice": "0xba43b7400", - "hash": "0xe589a39acea3091b584b650158d08b159aa07e97b8e8cddb8f81cb606e13382e", - "input": "0x", - "nonce": "0x32c14", - "r": "0x77fe7cfb03258f2eed8ffbbdc19f73f4a6095a55a7e06f81ade02f3435f7e249", - "s": "0x821ad733ceecfa7567e9c8ffb66e3f8bbc3b2b7b21bacadb2a065e57b2a6992", - "to": "0x1c774e876a46f51e305add171ba3bb4589408273", - "transactionIndex": "0x1", - "v": "0x1b", - "value": "0xe5ef66c73b5fc00" -} \ No newline at end of file diff --git a/testing/trial/README.adoc b/testing/trial/README.adoc deleted file mode 100644 index 80d35c4b..00000000 --- a/testing/trial/README.adoc +++ /dev/null @@ -1,8 +0,0 @@ -= Actual Tests - -Expects running _Simple Upstream_ and _Testing Dshackle_. - -.Run from current directory ----- -./gradlew check ----- \ No newline at end of file diff --git a/testing/trial/build.gradle b/testing/trial/build.gradle deleted file mode 100644 index 2b880154..00000000 --- a/testing/trial/build.gradle +++ /dev/null @@ -1,35 +0,0 @@ -plugins { - id 'java' - id 'groovy' - id 'idea' -} - -repositories { - mavenLocal() - mavenCentral() - maven { url "https://maven.emrld.io" } -} - -dependencies { - implementation "org.apache.httpcomponents:httpclient:4.5.12" - implementation "org.codehaus.groovy:groovy:3.0.4" - implementation "com.fasterxml.jackson.core:jackson-core:2.9.8" - implementation "com.fasterxml.jackson.core:jackson-databind:2.9.8" - implementation "io.grpc:grpc-netty:1.46.0" - implementation "org.bouncycastle:bcprov-jdk15on:1.61" - implementation("io.emeraldpay:emerald-api:0.12-alpha.1") { - exclude group: 'com.salesforce.servicelibs', module: 'reactor-grpc' - } - - testImplementation "org.spockframework:spock-core:2.0-M3-groovy-3.0" -} - - -test { - systemProperty "trialMode", project.getProperty("dshackleTrialMode") - systemProperty "signatureKey", project.getProperty("signatureKey") - useJUnitPlatform() - testLogging { - events "PASSED", "FAILED" - } -} \ No newline at end of file diff --git a/testing/trial/settings.gradle b/testing/trial/settings.gradle deleted file mode 100644 index e27e091c..00000000 --- a/testing/trial/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -rootProject.name = 'dshackle-testing-trial' \ No newline at end of file diff --git a/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/Client.groovy b/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/Client.groovy deleted file mode 100644 index 9feac2ca..00000000 --- a/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/Client.groovy +++ /dev/null @@ -1,6 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial - -interface Client { - Map execute(String method, List params) - Map execute(Object id, String method, List params) -} \ No newline at end of file diff --git a/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/Debugger.groovy b/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/Debugger.groovy deleted file mode 100644 index fe8dc620..00000000 --- a/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/Debugger.groovy +++ /dev/null @@ -1,20 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial - -class Debugger { - - public static enabled = true - - static void showOut(String json) { - if (!enabled) { - return - } - println(">> $json") - } - - static void showIn(String json) { - if (!enabled) { - return - } - println("<< $json") - } -} diff --git a/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/ProtoClient.groovy b/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/ProtoClient.groovy deleted file mode 100644 index e7b2b292..00000000 --- a/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/ProtoClient.groovy +++ /dev/null @@ -1,64 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial - -import com.fasterxml.jackson.databind.ObjectMapper -import com.google.common.primitives.Bytes -import com.google.protobuf.ByteString -import io.emeraldpay.api.proto.BlockchainOuterClass -import io.emeraldpay.api.proto.Common -import io.emeraldpay.api.proto.ReactorBlockchainGrpc -import io.emeraldpay.grpc.Chain -import io.grpc.ManagedChannel -import io.grpc.netty.NettyChannelBuilder - -class ProtoClient implements Client { - private int sequence = 0; - private ObjectMapper objectMapper; - private ReactorBlockchainGrpc.ReactorBlockchainStub stub - private Chain chain - - ProtoClient(ManagedChannel channel, Chain chain) { - this.stub = ReactorBlockchainGrpc.newReactorStub(channel) - this.objectMapper = new ObjectMapper() - this.chain= chain - } - - static ProtoClient create(String host, int port, Chain chain) { - def channel = NettyChannelBuilder.forAddress(host, port) - .maxInboundMessageSize(Integer.MAX_VALUE) - .usePlaintext() - new ProtoClient(channel.build(), chain) - } - - static ProtoClient basic() { - create("localhost", 12448, Chain.ETHEREUM) - } - - BlockchainOuterClass.NativeCallReplyItem executeNative(String method, List params, Long nonce) { - def req = BlockchainOuterClass.NativeCallRequest - .newBuilder() - .setChain(Common.ChainRef.CHAIN_ETHEREUM) - .addItems(BlockchainOuterClass.NativeCallItem - .newBuilder() - .setId(0) - .setNonce(nonce) - .setMethod(method) - .setPayload(ByteString.copyFrom(objectMapper.writeValueAsBytes(params))) - .build() - ).build() - stub.nativeCall(req) - .single() - .block() - } - - Map execute(String method, List params) { - return execute(sequence++, method, params) - } - Map execute(Object id, String method, List params) { - def result = executeNative(method, params, 0L) - if (result.errorMessage != "") { - return [error: result.errorMessage] - } else { - return objectMapper.readerFor(Map).readValue(Bytes.concat("{\"result\": ".bytes, result.payload.toByteArray(), "}".bytes)) - } - } -} \ No newline at end of file diff --git a/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/ProxyClient.groovy b/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/ProxyClient.groovy deleted file mode 100644 index 98d3e94f..00000000 --- a/testing/trial/src/main/groovy/io/emeraldpay/dshackle/testing/trial/ProxyClient.groovy +++ /dev/null @@ -1,83 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial - -import com.fasterxml.jackson.databind.ObjectMapper -import org.apache.commons.codec.binary.Hex -import org.apache.http.HttpHeaders -import org.apache.http.client.HttpClient -import org.apache.http.client.methods.CloseableHttpResponse -import org.apache.http.client.methods.HttpPost -import org.apache.http.entity.ContentType -import org.apache.http.entity.StringEntity -import org.apache.http.impl.client.CloseableHttpClient -import org.apache.http.impl.client.HttpClientBuilder -import org.apache.http.impl.client.HttpClients - -class ProxyClient implements Client { - - private int sequence = 0; - - private String url - private ObjectMapper objectMapper - - ProxyClient(String url) { - this.url = url - this.objectMapper = new ObjectMapper() - } - - static ProxyClient ethereumMock() { - return forPrefix(18080, "eth") - } - - static ProxyClient ethereumReal() { - return forPrefix(18081, "eth") - } - - static ProxyClient ethereumRinkeby() { - return forPrefix(18081, "rinkeby") - } - - static ProxyClient forPrefix(String prefix) { - return forPrefix(18080, prefix) - } - - static ProxyClient forPrefix(int port, String prefix) { - return new ProxyClient("http://127.0.0.1:$port/$prefix") - } - - static ProxyClient forOriginal(int port) { - return new ProxyClient("http://127.0.0.1:$port") - } - - Map execute(String method, List params) { - return execute(sequence++, method, params) - } - - Map execute(Object id, String method, List params) { - Map jsonData = [ - id : id, - jsonrpc: "2.0", - method : method, - params : params - ] - String reqJson = objectMapper.writeValueAsString(jsonData) - Debugger.showOut(reqJson) - CloseableHttpClient httpClient = null - try { - httpClient = HttpClients.createDefault() - def request = new HttpPost(url) - request.setEntity(new StringEntity(reqJson, ContentType.APPLICATION_JSON)) - CloseableHttpResponse response = httpClient.execute(request) - if (response.getStatusLine().statusCode != 200) { - throw new IllegalStateException("Non-ok status: " + response.getStatusLine().statusCode) - } - String respJson = response.entity.content.text - Debugger.showIn(respJson) - return objectMapper.readerFor(Map).readValue(respJson) - } finally { - httpClient?.close() - } - - return [error: "NOT EXECUTED"] - } - -} diff --git a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/DispatchSpec.groovy b/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/DispatchSpec.groovy deleted file mode 100644 index a7a30856..00000000 --- a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/DispatchSpec.groovy +++ /dev/null @@ -1,63 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial.basicproxy - -import io.emeraldpay.dshackle.testing.trial.ProxyClient -import spock.lang.IgnoreIf -import spock.lang.Specification - -@IgnoreIf({ System.getProperty('trialMode') != 'basic' }) -class DispatchSpec extends Specification { - - def client = ProxyClient.forPrefix("eth") - - def "multiple calls routed roughly equal to upstreams"() { - when: - def calls1before = ProxyClient.forOriginal(18545).execute("eth_call", [[to: "0x0123456789abcdef0123456789abcdef00000002"]]).result as List - def calls2before = ProxyClient.forOriginal(18546).execute("eth_call", [[to: "0x0123456789abcdef0123456789abcdef00000002"]]).result as List - - 100.times { - client.execute("eth_call", [[to: "0x0123456789abcdef0123456789abcdef00000001", data: "0x00000000" + Integer.toString(it, 16)]]) - } - - def calls1after = ProxyClient.forOriginal(18545).execute("eth_call", [[to: "0x0123456789abcdef0123456789abcdef00000002"]]).result as List - def calls2after = ProxyClient.forOriginal(18546).execute("eth_call", [[to: "0x0123456789abcdef0123456789abcdef00000002"]]).result as List - - def calls1 = onlyNew(calls1before, calls1after) - def calls2 = onlyNew(calls2before, calls2after) - - then: - calls1.size() >= 48 - calls2.size() >= 48 - calls1.size() + calls2.size() == 100 - } - - def "multiple calls routed roughly equal to upstreams - for latest block"() { - when: - def calls1before = ProxyClient.forOriginal(18545).execute("eth_call", [[to: "0x0123456789abcdef0123456789abcdef00000002"]]).result as List - def calls2before = ProxyClient.forOriginal(18546).execute("eth_call", [[to: "0x0123456789abcdef0123456789abcdef00000002"]]).result as List - - 100.times { - client.execute("eth_call", [[to: "0x0123456789abcdef0123456789abcdef00000001", data: "0x00000000" + Integer.toString(it, 16)], "0x100001"]) - } - - def calls1after = ProxyClient.forOriginal(18545).execute("eth_call", [[to: "0x0123456789abcdef0123456789abcdef00000002"]]).result as List - def calls2after = ProxyClient.forOriginal(18546).execute("eth_call", [[to: "0x0123456789abcdef0123456789abcdef00000002"]]).result as List - - def calls1 = onlyNew(calls1before, calls1after) - def calls2 = onlyNew(calls2before, calls2after) - - then: - calls1.size() >= 48 - calls2.size() >= 48 - calls1.size() + calls2.size() == 100 - } - - private List onlyNew(List before, List after) { - return after.findAll { a -> - !before.any { b -> - b.id == a.id - } - }.findAll { - (it.json as String).contains("0x0123456789abcdef0123456789abcdef00000001") - } - } -} diff --git a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/GivesErrorSpec.groovy b/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/GivesErrorSpec.groovy deleted file mode 100644 index 4043b229..00000000 --- a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/GivesErrorSpec.groovy +++ /dev/null @@ -1,74 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial.basicproxy - -import io.emeraldpay.dshackle.testing.trial.ProxyClient -import spock.lang.IgnoreIf -import spock.lang.Specification - -@IgnoreIf({ System.getProperty('trialMode') != 'basic' }) -class GivesErrorSpec extends Specification { - - def client = ProxyClient.forPrefix("eth") - - def "Gives error message"() { - // issue #42 - when: - def act = client.execute("eth_call", [[to: "0x542156d51D10Db5acCB99f9Db7e7C91B74E80a2c"]]) - then: - act.result == null - act.error != null - with(act.error) { - code == -32015 - message == "VM execution error." - } - } - - def "Gives error data"() { - // issue #42 - when: - def act = client.execute("eth_call", [[to: "0x8ee2a5aca4f88cb8c757b8593d0734855dcc0eba"]]) - then: - act.result == null - act.error != null - with(act.error) { - code == -32015 - message == "VM execution error." - data == "revert: SafeMath: division by zero" - } - } - - def "Dispatch error from upstream when block is specified"() { - // issue #67 - when: - def call = [ - to : "0xdAC17F958D2ee523a2206206994597C13D831ec7", - from: "0xEF65ffB384c99a00403EAa22115323a555700D79", - data: "0xa9059cbb0000000000000000000000003f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be000000000000000000000000000000000000000000000000000000004856fb60" - ] - def act = client.execute("eth_call", [call, "0x100000"]) - then: - act.result == null - act.error != null - with(act.error) { - code == -32000 - message == "invalid opcode: opcode 0xfe not defined" - } - } - - def "Dispatch error from upstream when custome method is used"() { - // issue #67 - when: - def call = [ - to : "0xdAC17F958D2ee523a2206206994597C13D831ec7", - from: "0xEF65ffB384c99a00403EAa22115323a555700D79", - data: "0xa9059cbb0000000000000000000000003f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be000000000000000000000000000000000000000000000000000000004856fb60" - ] - def act = client.execute("test_foo", [call, "0x100000"]) - then: - act.result == null - act.error != null - with(act.error) { - code == -32000 - message == "invalid opcode: opcode 0xfe not defined" - } - } -} diff --git a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/HardcodedCallsSpec.groovy b/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/HardcodedCallsSpec.groovy deleted file mode 100644 index 96c99be6..00000000 --- a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/HardcodedCallsSpec.groovy +++ /dev/null @@ -1,36 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial.basicproxy - -import io.emeraldpay.dshackle.testing.trial.ProxyClient -import spock.lang.IgnoreIf -import spock.lang.Specification - -@IgnoreIf({ System.getProperty('trialMode') != 'basic' }) -class HardcodedCallsSpec extends Specification { - - def client = ProxyClient.forPrefix("eth") - - def "get syncing"() { - when: - def act = client.execute("eth_syncing", []) - then: - act.result == false - act.error == null - } - - def "get network version"() { - when: - def act = client.execute("net_version", []) - then: - act.result == "1" - act.error == null - } - - def "get peer count"() { - when: - def act = client.execute("net_peerCount", []) - then: - act.result == "0x2a" - act.error == null - } - -} diff --git a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/MetamaskCallSpec.groovy b/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/MetamaskCallSpec.groovy deleted file mode 100644 index 4588945f..00000000 --- a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/MetamaskCallSpec.groovy +++ /dev/null @@ -1,20 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial.basicproxy - -import io.emeraldpay.dshackle.testing.trial.ProxyClient -import spock.lang.IgnoreIf -import spock.lang.Specification - -@IgnoreIf({ System.getProperty('trialMode') != 'basic' }) -class MetamaskCallSpec extends Specification { - - def client = ProxyClient.forPrefix("eth") - - def "use long id"() { - when: - def act = client.execute(1057264140543346, "net_version", []) - then: - act.id == 1057264140543346 - act.result != null - act.error == null - } -} diff --git a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/StandardCallsSpec.groovy b/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/StandardCallsSpec.groovy deleted file mode 100644 index bf11f266..00000000 --- a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/basicproxy/StandardCallsSpec.groovy +++ /dev/null @@ -1,166 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial.basicproxy - -import com.google.common.primitives.Bytes -import com.google.common.primitives.Longs -import io.emeraldpay.dshackle.testing.trial.ProtoClient -import io.emeraldpay.dshackle.testing.trial.ProxyClient -import org.apache.commons.codec.binary.Hex -import spock.lang.IgnoreIf -import spock.lang.Shared -import spock.lang.Specification -import java.security.KeyFactory -import org.bouncycastle.util.io.pem.PemReader - -import java.security.MessageDigest -import java.security.Signature -import java.security.spec.PKCS8EncodedKeySpec -import java.security.spec.X509EncodedKeySpec - -@IgnoreIf({ System.getProperty('trialMode') != 'basic' }) -class StandardCallsSpec extends Specification { - - @Shared client_proto = ProtoClient.basic() - @Shared client_proxy = ProxyClient.forPrefix("eth") - - @Shared clients = [client_proto, client_proxy] - - def "get height"() { - when: - def act = client.execute("eth_blockNumber", []) - then: - act.result == "0x100001" - act.error == null - where: - client << clients - } - - def "get block"() { - when: - def act = client.execute("eth_getBlockByNumber", ["0x100001", false]) - then: - act.result != null - with(act.result) { - number == "0x100001" - hash == "0x18c68d9ba58772a4409d65d61891b25db03a105a7769ae08ef2cff697921b446" - transactions == [ - "0x146b8f4b6300c73bb7476359b9f1c5ee3f686a86b2aa673552cf0f9de9a42e77", - "0xe589a39acea3091b584b650158d08b159aa07e97b8e8cddb8f81cb606e13382e" - ] - } - act.error == null - where: - client << clients - } - - def "get non-existing block"() { - when: - def act = client.execute("eth_getBlockByNumber", ["0x200001", false]) - then: - act.result == null - act.error == null - where: - client << clients - } - - def "get tx"() { - when: - def act = client.execute("eth_getTransactionByHash", ["0x01c5a8461d06c2c195035c148af0f871c7679841d86ae5bb98676bb2d8e68dfa"]) - then: - act.result != null - with(act.result) { - blockHash == "0x9a834c53bbee9c2665a5a84789a1d1ad73750b2d77b50de44f457f411d02e52e" - } - act.error == null - where: - client << clients - } - - def "get non-existing tx"() { - when: - def act = client.execute("eth_getTransactionByHash", ["0x000000461d06c2c195035c148af0f871c7679841d86ae5bb98676bb2d8e68dfa"]) - then: - act.result == null - act.error == null - where: - client << clients - } - - def "get block with txes"() { - when: - def act = client.execute("eth_getBlockByNumber", ["0x100001", true]) - then: - act.result != null - with(act.result) { - number == "0x100001" - hash == "0x18c68d9ba58772a4409d65d61891b25db03a105a7769ae08ef2cff697921b446" - transactions.size() == 2 - transactions[0] instanceof Map - transactions[1] instanceof Map - with(transactions.find { it.hash == "0x146b8f4b6300c73bb7476359b9f1c5ee3f686a86b2aa673552cf0f9de9a42e77" }) { - from == "0x2a65aca4d5fc5b5c859090a6c34d164135398226" - } - } - act.error == null - where: - client << clients - } - - def "returns original block json"() { - when: - def act = client.execute("eth_getBlockByNumber", ["0x100001", false]) - then: - act.result != null - with(act.result) { - testFoo == "bar" - } - act.error == null - where: - client << clients - } - - def "returns original block json with tx"() { - when: - def act = client.execute("eth_getBlockByNumber", ["0x100001", true]) - then: - act.result != null - with(act.result) { - testFoo == "bar" - } - act.error == null - where: - client << clients - } - - def "check response signature with nonce"() { - when: - def act = client_proto.executeNative("eth_blockNumber", [], 10) - def keyFactory = KeyFactory.getInstance("EC") - def key = new File(System.getProperty('signatureKey')) - def reader = new PemReader(key.newReader()) - def keySpec = new X509EncodedKeySpec(reader.readPemObject().getContent()) - def pubKey = keyFactory.generatePublic(keySpec) - def sig = Signature.getInstance("SHA256withECDSA") - sig.initVerify(pubKey) - def sep = "/".bytes - def digest = MessageDigest.getInstance("SHA-256") - def messageHash = digest.digest(act.payload.toByteArray()) - def sigmessage = Bytes.concat("DSHACKLESIG".bytes, - sep, - 10L.toString().bytes, - sep, - act.signature.upstreamId.bytes, - sep, - Hex.encodeHexString(messageHash).bytes) - sig.update(sigmessage) - then: - (new String(act.payload.toByteArray())) == "\"0x100001\"" - sig.verify(act.signature.signature.toByteArray()) - } - - def "check response signature without nonce"() { - when: - def act = client_proto.executeNative("eth_blockNumber", [], 0L) - then: - act.signature.signature.isEmpty() - } -} diff --git a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/mainnet/GetBlockSpec.groovy b/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/mainnet/GetBlockSpec.groovy deleted file mode 100644 index 1c7c9108..00000000 --- a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/mainnet/GetBlockSpec.groovy +++ /dev/null @@ -1,40 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial.mainnet - -import io.emeraldpay.dshackle.testing.trial.Debugger -import io.emeraldpay.dshackle.testing.trial.ProxyClient -import spock.lang.IgnoreIf -import spock.lang.Specification -import spock.lang.Timeout - -@IgnoreIf({ System.getProperty('trialMode') != 'real' }) -class GetBlockSpec extends Specification { - - def client = ProxyClient.ethereumReal() - - def setup() { - Debugger.enabled = false - } - - def cleanup() { - Debugger.enabled = true - } - - @Timeout(15) - def "Correct order for transactions on #height"() { - expect: - def results = [ - (client.execute("eth_getBlockByNumber", ["0x" + Integer.toString(height, 16), false]).result["transactions"] as List), - (client.execute("eth_getBlockByNumber", ["0x" + Integer.toString(height, 16), true]).result["transactions"] as List>) - .collect { it.hash } - ] - - println(results[0]) - println(results[1]) - - results[0] == results[1] - - where: - height << (10_000_000..10_000_500) - - } -} diff --git a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/rinkeby/CallContractSpec.groovy b/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/rinkeby/CallContractSpec.groovy deleted file mode 100644 index 193f5226..00000000 --- a/testing/trial/src/test/groovy/io/emeraldpay/dshackle/testing/trial/rinkeby/CallContractSpec.groovy +++ /dev/null @@ -1,30 +0,0 @@ -package io.emeraldpay.dshackle.testing.trial.rinkeby - -import io.emeraldpay.dshackle.testing.trial.ProxyClient -import spock.lang.IgnoreIf -import spock.lang.Specification - -@IgnoreIf({ System.getProperty('trialMode') != 'rinkeby' }) -class CallContractSpec extends Specification { - - def client = ProxyClient.ethereumRinkeby() - - def "get block"() { - when: - def act = client.execute(65, "eth_call", - [ - [ - "to" : "0xB8Ba177465b3d696180742c6ba58C408175CB6Dd", - "data": "0x70a08231000000000000000000000000da3f87aa38d07f1fc836873a3b34ec23088ef78a" - ], - "0xc90f1c8c125a4d5b90742f16947bdb1d10516f173fd7fc51223d10499de2a812" - ] - ) - then: - act.id == 65 - act.result != null - act.result == "0x000000000000000000000000000000000000000000000000000000003af9a800" - act.error == null - } - -}