From 2721b8133f53688c31e5c4061e3dd67372c74b79 Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Fri, 11 Jul 2025 17:53:40 +0200 Subject: [PATCH 1/6] Delete DVF file regardless of test outcome --- tests/test_end_to_end.rs | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/tests/test_end_to_end.rs b/tests/test_end_to_end.rs index e2ef266..b62b7da 100644 --- a/tests/test_end_to_end.rs +++ b/tests/test_end_to_end.rs @@ -11,6 +11,7 @@ mod tests { use std::io::Write; use std::panic; use std::path::Path; + use std::path::PathBuf; use std::process::{Child, Command as SimpleCommand, Stdio}; use std::thread::sleep; use std::time::Duration; @@ -54,6 +55,18 @@ mod tests { } } + struct CleanupGuard { + path: PathBuf, + } + + impl Drop for CleanupGuard { + fn drop(&mut self) { + if self.path.exists() { + Command::new("rm").arg(&self.path).assert(); + } + } + } + fn chain_id_str(client_type: LocalClientType) -> String { match client_type { LocalClientType::Anvil => String::from("31337"), @@ -664,6 +677,12 @@ mod tests { let mut new_dvf_path = config.dvf_storage.clone(); new_dvf_path.push("MyToken.dvf.json"); outfile.persist(new_dvf_path.as_path()).unwrap(); + println!("persisting in {:?}", new_dvf_path.as_path()); + + // this will clean up the file even if the test fails mid-way + let cleanup = CleanupGuard { + path: new_dvf_path.clone(), + }; let proxy_outfile = NamedTempFile::new().unwrap(); let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); @@ -745,8 +764,7 @@ mod tests { .success(); // Remove MyToken.dvf.json - let mut rm_cmd = Command::new("rm"); - rm_cmd.arg(new_dvf_path.as_path()).assert().success(); + drop(cleanup); drop(local_client); } From 9f6f32be8207ff31707db7d0a52c4c905bac1241 Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Mon, 14 Jul 2025 13:41:05 +0200 Subject: [PATCH 2/6] Debug issue and fix --- lib/bytecode_verification/parse_json.rs | 1 - lib/state/contract_state.rs | 12 +- lib/web3.rs | 2 +- tests/Contracts/src/BytesMapping.sol | 2 + tests/test_end_to_end.rs | 235 ++++++++++++------------ 5 files changed, 131 insertions(+), 121 deletions(-) diff --git a/lib/bytecode_verification/parse_json.rs b/lib/bytecode_verification/parse_json.rs index ac30006..2df1e59 100644 --- a/lib/bytecode_verification/parse_json.rs +++ b/lib/bytecode_verification/parse_json.rs @@ -1424,7 +1424,6 @@ impl ProjectInfo { build_cache: Option<&String>, libraries: Option>, ) -> Result { - println!("Libraries are {:?}", libraries); let build_info_path: PathBuf = match build_cache { Some(s) => PathBuf::from(s), diff --git a/lib/state/contract_state.rs b/lib/state/contract_state.rs index 458385c..225ed9e 100644 --- a/lib/state/contract_state.rs +++ b/lib/state/contract_state.rs @@ -184,6 +184,7 @@ impl<'a> ContractState<'a> { if depth_to_address[&log.depth] == self.address { if let Some(key_in) = key { + // println!("idk where we are, but we are adding mapping key {:?}", key_in); let target_slot = &stack[stack.len() - 1]; if !self.mapping_usages.contains_key(&index) { let mut usage_set = HashSet::new(); @@ -206,8 +207,9 @@ impl<'a> ContractState<'a> { &log.memory.unwrap(), ) ); + // println!("SHA input {:?}, length {:?}", sha3_input, length_in_bytes); // Look for mapping usages - if length_in_bytes > U256::from(32_u64) + if length_in_bytes >= U256::from(32_u64) && length_in_bytes < U256::from(usize::MAX / 2) { let usize_str_length = @@ -215,7 +217,7 @@ impl<'a> ContractState<'a> { assert!(sha3_input.len() == usize_str_length); key = Some(sha3_input[2..usize_str_length - 64].to_string()); index = U256::from_str_radix(&sha3_input[usize_str_length - 64..], 16)?; - debug!("Found key {} for index {}.", key.clone().unwrap(), index); + println!("Found key {} for index {}.", key.clone().unwrap(), index); } } } @@ -245,6 +247,7 @@ impl<'a> ContractState<'a> { pi_types: &HashMap, zerovalue: bool, ) -> Result, ValidationError> { + println!("Prugna"); let default_values = &ForgeInspect::default_values(); // Add default types as we might need them let mut types = default_values.types.clone(); @@ -256,6 +259,7 @@ impl<'a> ContractState<'a> { let mut critical_storage_variables = Vec::::new(); for state_variable in &self.state_variables { + println!("1. Considering sv {:?}", state_variable); critical_storage_variables.extend(self.get_critical_variable( state_variable, snapshot, @@ -263,6 +267,7 @@ impl<'a> ContractState<'a> { zerovalue, )?); } + println!("Crit storage vars {:?}", critical_storage_variables); let mut storage = default_values.storage.clone(); storage.extend(pi_storage.to_owned()); @@ -273,7 +278,7 @@ impl<'a> ContractState<'a> { // debug!("Skipping default var {} because it overlaps with existing or is uninitialized.", sv.label); // continue; // } - + println!("2. Considering sv {:?}", sv); let new_critical_storage_variables = self.get_critical_variable(sv, snapshot, table, zerovalue)?; let mut has_nonzero = false; @@ -499,6 +504,7 @@ impl<'a> ContractState<'a> { .collect(); sorted_keys.sort(); for (sorted_key, target_slot) in &sorted_keys { + println!("Considering mapping key {:?} with slot {:?}", sorted_key, target_slot); let key_type = self.get_key_type(&state_variable.var_type); // Skip if key is longer than actual key type of the mapping diff --git a/lib/web3.rs b/lib/web3.rs index a07b04e..a20e02a 100644 --- a/lib/web3.rs +++ b/lib/web3.rs @@ -1821,7 +1821,7 @@ impl StorageSnapshot { } } - // Collect all storage slots that have not previously been queried + // Collect all storage slots that have not been queried previously pub fn get_unused_nonzero_storage_slots(&self) -> Vec { let mut unused_storage_parts: Vec = vec![]; diff --git a/tests/Contracts/src/BytesMapping.sol b/tests/Contracts/src/BytesMapping.sol index 9d41c62..617051a 100644 --- a/tests/Contracts/src/BytesMapping.sol +++ b/tests/Contracts/src/BytesMapping.sol @@ -12,6 +12,8 @@ contract BytesMapping { x[bytes("Hello this is a test")] = 5; x[bytes("A veryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryvery long string")] = 42; b = bytes("Just some normal bytes."); + x["Just a nice string"] = 23; + x[""] = 16; } function f() external { diff --git a/tests/test_end_to_end.rs b/tests/test_end_to_end.rs index b62b7da..d2f0d22 100644 --- a/tests/test_end_to_end.rs +++ b/tests/test_end_to_end.rs @@ -311,47 +311,47 @@ mod tests { updated: String::from("tests/expected_dvfs/Deploy_0_updated.dvf.json"), }); - testcases.push(TestCaseE2EUpdate { - script: String::from("script/Deploy_1.s.sol"), - contract: String::from("StringMapping"), - expected: String::from("tests/expected_dvfs/Deploy_1_b1.dvf.json"), - updated: String::from("tests/expected_dvfs/Deploy_1_updated.dvf.json"), - }); - // testcases.push(TestCaseE2EUpdate { - // script: String::from("script/Deploy_2.s.sol"), - // contract: String::from("CrazyStruct"), - // expected: String::from("tests/expected_dvfs/Deploy_2_b1.dvf.json"), - // updated: String::from("tests/expected_dvfs/Deploy_2_updated.dvf.json"), + // script: String::from("script/Deploy_1.s.sol"), + // contract: String::from("StringMapping"), + // expected: String::from("tests/expected_dvfs/Deploy_1_b1.dvf.json"), + // updated: String::from("tests/expected_dvfs/Deploy_1_updated.dvf.json"), // }); - testcases.push(TestCaseE2EUpdate { - script: String::from("script/Deploy_3.s.sol"), - contract: String::from("StructInEvent"), - expected: String::from("tests/expected_dvfs/Deploy_3_b1.dvf.json"), - updated: String::from("tests/expected_dvfs/Deploy_3_updated.dvf.json"), - }); + // // testcases.push(TestCaseE2EUpdate { + // // script: String::from("script/Deploy_2.s.sol"), + // // contract: String::from("CrazyStruct"), + // // expected: String::from("tests/expected_dvfs/Deploy_2_b1.dvf.json"), + // // updated: String::from("tests/expected_dvfs/Deploy_2_updated.dvf.json"), + // // }); - testcases.push(TestCaseE2EUpdate { - script: String::from("script/Deploy_4.s.sol"), - contract: String::from("StaticArrayOfDynamicArray"), - expected: String::from("tests/expected_dvfs/Deploy_4_b1.dvf.json"), - updated: String::from("tests/expected_dvfs/Deploy_4_updated.dvf.json"), - }); + // testcases.push(TestCaseE2EUpdate { + // script: String::from("script/Deploy_3.s.sol"), + // contract: String::from("StructInEvent"), + // expected: String::from("tests/expected_dvfs/Deploy_3_b1.dvf.json"), + // updated: String::from("tests/expected_dvfs/Deploy_3_updated.dvf.json"), + // }); - testcases.push(TestCaseE2EUpdate { - script: String::from("script/Deploy_5.s.sol"), - contract: String::from("NestedMapping"), - expected: String::from("tests/expected_dvfs/Deploy_5_b1.dvf.json"), - updated: String::from("tests/expected_dvfs/Deploy_5_updated.dvf.json"), - }); + // testcases.push(TestCaseE2EUpdate { + // script: String::from("script/Deploy_4.s.sol"), + // contract: String::from("StaticArrayOfDynamicArray"), + // expected: String::from("tests/expected_dvfs/Deploy_4_b1.dvf.json"), + // updated: String::from("tests/expected_dvfs/Deploy_4_updated.dvf.json"), + // }); - testcases.push(TestCaseE2EUpdate { - script: String::from("script/Deploy_6.s.sol"), - contract: String::from("Enum"), - expected: String::from("tests/expected_dvfs/Deploy_6_b1.dvf.json"), - updated: String::from("tests/expected_dvfs/Deploy_6_updated.dvf.json"), - }); + // testcases.push(TestCaseE2EUpdate { + // script: String::from("script/Deploy_5.s.sol"), + // contract: String::from("NestedMapping"), + // expected: String::from("tests/expected_dvfs/Deploy_5_b1.dvf.json"), + // updated: String::from("tests/expected_dvfs/Deploy_5_updated.dvf.json"), + // }); + + // testcases.push(TestCaseE2EUpdate { + // script: String::from("script/Deploy_6.s.sol"), + // contract: String::from("Enum"), + // expected: String::from("tests/expected_dvfs/Deploy_6_b1.dvf.json"), + // updated: String::from("tests/expected_dvfs/Deploy_6_updated.dvf.json"), + // }); for testcase in testcases { let url = format!("http://localhost:{}", port).to_string(); @@ -377,7 +377,7 @@ mod tests { &String::from_utf8_lossy(&forge_assert.get_output().stdout) ); - let outfile = NamedTempFile::new().unwrap(); + let outfile = String::from("./empty.dvf.json"); let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); let assert = dvf_cmd .args(&[ @@ -394,7 +394,7 @@ mod tests { &testcase.contract, "--initblock", "2", - &outfile.path().to_string_lossy(), + &outfile, ]) .assert() .success(); @@ -403,87 +403,90 @@ mod tests { // Uncomment to regenerate expected files // std::fs::copy(outfile.path(), Path::new(&testcase.expected)).unwrap(); - assert_eq_files(&outfile.path(), &Path::new(&testcase.expected)); - - // Sign - let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); - let assert = dvf_cmd - .args(&[ - "--config", - &config_file.path().to_string_lossy(), - "sign", - &outfile.path().to_string_lossy(), - ]) - .assert() - .success(); - println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); - - // Validate - let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); - let assert = dvf_cmd - .args(&[ - "--config", - &config_file.path().to_string_lossy(), - "validate", - "--validationblock", - "2", - &outfile.path().to_string_lossy(), - ]) - .assert() - .success(); - println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); - - // Update - let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); - let assert = dvf_cmd - .args(&[ - "--config", - &config_file.path().to_string_lossy(), - "update", - "--validationblock", - "5", - &outfile.path().to_string_lossy(), - ]) - .assert() - .success(); - println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); - - let updated_path = format!("{}_updated.dvf.json", outfile.path().to_string_lossy()); - - // Uncomment to regenerate expected files - // std::fs::copy(Path::new(&updated_path), Path::new(&testcase.updated)).unwrap(); - - assert_eq_files(&Path::new(&updated_path), &Path::new(&testcase.updated)); - - // Sign - let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); - let assert = dvf_cmd - .args(&[ - "--config", - &config_file.path().to_string_lossy(), - "sign", - &updated_path, - ]) - .assert() - .success(); - println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); - - // Validate - let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); - let assert = dvf_cmd - .args(&[ - "--config", - &config_file.path().to_string_lossy(), - "validate", - "--validationblock", - "5", - &updated_path, - ]) - .assert() - .success(); - println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); + // assert_eq_files(&outfile, &Path::new(&testcase.expected)); + + // // Sign + // let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); + // let assert = dvf_cmd + // .args(&[ + // "--config", + // &config_file.path().to_string_lossy(), + // "sign", + // &outfile.path().to_string_lossy(), + // ]) + // .assert() + // .success(); + // println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); + + // // Validate + // let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); + // let assert = dvf_cmd + // .args(&[ + // "--config", + // &config_file.path().to_string_lossy(), + // "validate", + // "--validationblock", + // "2", + // &outfile.path().to_string_lossy(), + // ]) + // .assert() + // .success(); + // println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); + + // // Update + // let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); + // let assert = dvf_cmd + // .args(&[ + // "--config", + // &config_file.path().to_string_lossy(), + // "update", + // "--validationblock", + // "5", + // &outfile.path().to_string_lossy(), + // ]) + // .assert() + // .success(); + // println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); + + // let updated_path = format!("{}_updated.dvf.json", outfile.path().to_string_lossy()); + + // // Uncomment to regenerate expected files + // // std::fs::copy(Path::new(&updated_path), Path::new(&testcase.updated)).unwrap(); + + // assert_eq_files(&Path::new(&updated_path), &Path::new(&testcase.updated)); + + // // Sign + // let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); + // let assert = dvf_cmd + // .args(&[ + // "--config", + // &config_file.path().to_string_lossy(), + // "sign", + // &updated_path, + // ]) + // .assert() + // .success(); + // println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); + + // // Validate + // let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); + // let assert = dvf_cmd + // .args(&[ + // "--config", + // &config_file.path().to_string_lossy(), + // "validate", + // "--validationblock", + // "5", + // &updated_path, + // ]) + // .assert() + // .success(); + // println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); drop(local_client); + + // TODO REMOVE + break; } } } From 3520bb49f3e1670fa6976b1de7d6f64af1de7469 Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Fri, 25 Jul 2025 16:35:37 +0200 Subject: [PATCH 3/6] Add tests for empty key in string and byte mapping --- tests/Contracts/src/BytesMapping.sol | 3 +-- tests/Contracts/src/StringMapping.sol | 1 + tests/expected_dvfs/Deploy_0_b1.dvf.json | 15 ++++++++++++--- tests/expected_dvfs/Deploy_1_b1.dvf.json | 15 ++++++++++++--- 4 files changed, 26 insertions(+), 8 deletions(-) diff --git a/tests/Contracts/src/BytesMapping.sol b/tests/Contracts/src/BytesMapping.sol index 617051a..ee4931a 100644 --- a/tests/Contracts/src/BytesMapping.sol +++ b/tests/Contracts/src/BytesMapping.sol @@ -12,8 +12,7 @@ contract BytesMapping { x[bytes("Hello this is a test")] = 5; x[bytes("A veryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryvery long string")] = 42; b = bytes("Just some normal bytes."); - x["Just a nice string"] = 23; - x[""] = 16; + x[bytes("")] = 42; } function f() external { diff --git a/tests/Contracts/src/StringMapping.sol b/tests/Contracts/src/StringMapping.sol index e5c2d1a..f2bcc1f 100644 --- a/tests/Contracts/src/StringMapping.sol +++ b/tests/Contracts/src/StringMapping.sol @@ -12,6 +12,7 @@ contract StringMapping { x["A veryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryvery long string"] = 42; y["abc"] = "a short string"; y["a"] = "A veryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryvery long string."; + x[""] = 42; emit SomeE("EventData", 1000); } diff --git a/tests/expected_dvfs/Deploy_0_b1.dvf.json b/tests/expected_dvfs/Deploy_0_b1.dvf.json index 8944538..df43d0c 100644 --- a/tests/expected_dvfs/Deploy_0_b1.dvf.json +++ b/tests/expected_dvfs/Deploy_0_b1.dvf.json @@ -1,12 +1,12 @@ { "version": "0.9.1", - "id": "0x4be820f0e3915aa5f0cc36ac62260161931c5873c01ed998e18c5f62fbcd2ed0", + "id": "0x25996dc252a0472b41456da06f497121e6d712e89eb3d46b84765f3759640a5b", "contract_name": "BytesMapping", "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", - "chain_id": 1337, + "chain_id": 31337, "deployment_block_num": 2, "init_block_num": 2, - "deployment_tx": "0x11819f70620f7d3a7a69eee5e9ad55cedec78c9fc5a83ab743fdec42a77ab504", + "deployment_tx": "0xa2179eff8c7827da8b42a4b2a304d7449f49a8923818b21e553fdb7c8b3357cb", "codehash": "0x3867a08d0f6ad7f18a522cb18383fa3eb688bbde257d84652a614fda9167b190", "insecure": false, "immutables": [], @@ -21,6 +21,15 @@ "value_hint": "4a75737420736f6d65206e6f726d616c2062797465732e", "comparison_operator": "Equal" }, + { + "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", + "offset": 0, + "var_name": "x[0x]", + "var_type": "t_uint256", + "value": "0x000000000000000000000000000000000000000000000000000000000000002a", + "value_hint": "42", + "comparison_operator": "Equal" + }, { "slot": "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb", "offset": 0, diff --git a/tests/expected_dvfs/Deploy_1_b1.dvf.json b/tests/expected_dvfs/Deploy_1_b1.dvf.json index ec3c43e..e25be60 100644 --- a/tests/expected_dvfs/Deploy_1_b1.dvf.json +++ b/tests/expected_dvfs/Deploy_1_b1.dvf.json @@ -1,17 +1,26 @@ { "version": "0.9.1", - "id": "0xddec5fab35250ee9bb557688e3df2c8ddca9c277e454546e5358aa48a1dfd25c", + "id": "0x62fabab8f05c6d0fd7dfe72a984b8a9260ca936be36a3a203e40d8143d4240f0", "contract_name": "StringMapping", "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", - "chain_id": 1337, + "chain_id": 31337, "deployment_block_num": 2, "init_block_num": 2, - "deployment_tx": "0xbd44492ce35b11b438be83b11fef8e1f18f3dd1f847c791083f3659d2a66885c", + "deployment_tx": "0x7a0aa5e701e0c9d0e249bf3ae61a1723583ab168eec26b652e6d7331ea3980fb", "codehash": "0x2feab59f98325c0ad112156daca7c79dc9e9e17c16be3e374874788370b91e02", "insecure": false, "immutables": [], "constructor_args": [], "critical_storage_variables": [ + { + "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", + "offset": 0, + "var_name": "x[]", + "var_type": "t_uint256", + "value": "0x000000000000000000000000000000000000000000000000000000000000002a", + "value_hint": "42", + "comparison_operator": "Equal" + }, { "slot": "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", "offset": 0, From eb6abdb84edf6d2182e8367944c114fd0971debd Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Fri, 25 Jul 2025 16:56:29 +0200 Subject: [PATCH 4/6] Update decode test data --- tests/data/result_BytesMapping.json | 27 +- tests/data/result_StringMapping.json | 49 +- tests/data/trace_BytesMapping.json | 8473 +++++++++++-------- tests/data/trace_StringMapping.json | 11163 +++++++++++++------------ 4 files changed, 11054 insertions(+), 8658 deletions(-) diff --git a/tests/data/result_BytesMapping.json b/tests/data/result_BytesMapping.json index c6cdad0..7cc52b2 100644 --- a/tests/data/result_BytesMapping.json +++ b/tests/data/result_BytesMapping.json @@ -1,4 +1,22 @@ [ + { + "slot": "0x1", + "offset": 0, + "var_name": "b (length=23)", + "var_type": "t_bytes_storage", + "value": "0x4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e", + "value_hint": "4a75737420736f6d65206e6f726d616c2062797465732e", + "comparison_operator": "Equal" + }, + { + "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", + "offset": 0, + "var_name": "x[0x]", + "var_type": "t_uint256", + "value": "0x000000000000000000000000000000000000000000000000000000000000002a", + "value_hint": "42", + "comparison_operator": "Equal" + }, { "slot": "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb", "offset": 0, @@ -16,14 +34,5 @@ "value": "0x0000000000000000000000000000000000000000000000000000000000000005", "value_hint": "5", "comparison_operator": "Equal" - }, - { - "slot": "0x1", - "offset": 0, - "var_name": "b (length=23)", - "var_type": "t_bytes_storage", - "value": "0x4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e", - "value_hint": "4a75737420736f6d65206e6f726d616c2062797465732e", - "comparison_operator": "Equal" } ] \ No newline at end of file diff --git a/tests/data/result_StringMapping.json b/tests/data/result_StringMapping.json index 1bb13b0..41be2a8 100644 --- a/tests/data/result_StringMapping.json +++ b/tests/data/result_StringMapping.json @@ -1,31 +1,13 @@ [ { - "slot": "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb", + "slot": "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", "offset": 0, - "var_name": "x[A veryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryvery long string]", + "var_name": "x[]", "var_type": "t_uint256", "value": "0x000000000000000000000000000000000000000000000000000000000000002a", "value_hint": "42", "comparison_operator": "Equal" }, - { - "slot": "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466", - "offset": 0, - "var_name": "x[Hello this is a test]", - "var_type": "t_uint256", - "value": "0x0000000000000000000000000000000000000000000000000000000000000005", - "value_hint": "5", - "comparison_operator": "Equal" - }, - { - "slot": "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "offset": 0, - "var_name": "y[a].length", - "var_type": "t_uint256", - "value": "0x00000000000000000000000000000000000000000000000000000000000000a7", - "value_hint": "167", - "comparison_operator": "Equal" - }, { "slot": "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", "offset": 0, @@ -53,6 +35,24 @@ "value_hint": "ryvery long string.", "comparison_operator": "Equal" }, + { + "slot": "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb", + "offset": 0, + "var_name": "x[A veryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryvery long string]", + "var_type": "t_uint256", + "value": "0x000000000000000000000000000000000000000000000000000000000000002a", + "value_hint": "42", + "comparison_operator": "Equal" + }, + { + "slot": "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466", + "offset": 0, + "var_name": "x[Hello this is a test]", + "var_type": "t_uint256", + "value": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value_hint": "5", + "comparison_operator": "Equal" + }, { "slot": "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "offset": 0, @@ -61,5 +61,14 @@ "value": "0x612073686f727420737472696e6700000000000000000000000000000000001c", "value_hint": "a short string", "comparison_operator": "Equal" + }, + { + "slot": "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "offset": 0, + "var_name": "y[a].length", + "var_type": "t_uint256", + "value": "0x00000000000000000000000000000000000000000000000000000000000000a7", + "value_hint": "167", + "comparison_operator": "Equal" } ] \ No newline at end of file diff --git a/tests/data/trace_BytesMapping.json b/tests/data/trace_BytesMapping.json index b009b19..bdbca82 100644 --- a/tests/data/trace_BytesMapping.json +++ b/tests/data/trace_BytesMapping.json @@ -1,371 +1,357 @@ { "trace": { "failed": false, - "gas": "0x432c6", - "returnValue": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806326121ff01461004657806332e43a111461004e578063e2179b8e14610050575b600080fd5b61004e610058565b005b61004e61009b565b6101c860006040518060400160405280600681526020016561626331323360d01b81525060405161008991906101a8565b90815260405190819003602001902055565b6102a660006040518060400160405280600681526020016561626331323360d01b8152506040516100cc91906101a8565b908152602001604051809103902081905550600660006040518060400160405280601481526020017312195b1b1bc81d1a1a5cc81a5cc818481d195cdd60621b81525060405161011c91906101a8565b90815260200160405180910390208190555060646000604051806040016040528060018152602001604160f81b81525060405161015991906101a8565b9081526020016040518091039020819055507f69521b378c8e35653fada29a3083d5639bd9913a746c511b2d969eb238c87c2a6001602a60405161019e9291906101d7565b60405180910390a1565b6000825160005b818110156101c957602081860181015185830152016101af565b506000920191825250919050565b60408152600080845481600182811c9150808316806101f757607f831692505b6020808410820361021657634e487b7160e01b86526022600452602486fd5b6040880184905260608801828015610235576001811461024b57610276565b60ff198716825285151560051b82019750610276565b60008c81526020902060005b8781101561027057815484820152908601908401610257565b83019850505b5050969096019690965250909594505050505056fea164736f6c6343000815000a", + "gas": 298260, + "returnValue": "608060405234801561001057600080fd5b50600436106100415760003560e01c806326121ff01461004657806332e43a111461004e578063e2179b8e14610050575b600080fd5b61004e610058565b005b61004e61009b565b6101c860006040518060400160405280600681526020016561626331323360d01b81525060405161008991906101a8565b90815260405190819003602001902055565b6102a660006040518060400160405280600681526020016561626331323360d01b8152506040516100cc91906101a8565b908152602001604051809103902081905550600660006040518060400160405280601481526020017312195b1b1bc81d1a1a5cc81a5cc818481d195cdd60621b81525060405161011c91906101a8565b90815260200160405180910390208190555060646000604051806040016040528060018152602001604160f81b81525060405161015991906101a8565b9081526020016040518091039020819055507f69521b378c8e35653fada29a3083d5639bd9913a746c511b2d969eb238c87c2a6001602a60405161019e9291906101d7565b60405180910390a1565b6000825160005b818110156101c957602081860181015185830152016101af565b506000920191825250919050565b60408152600080845481600182811c9150808316806101f757607f831692505b6020808410820361021657634e487b7160e01b86526022600452602486fd5b6040880184905260608801828015610235576001811461024b57610276565b60ff198716825285151560051b82019750610276565b60008c81526020902060005b8781101561027057815484820152908601908401610257565b83019850505b5050969096019690965250909594505050505056fea164736f6c6343000815000a", "structLogs": [ { - "depth": 1, - "gas": 200550, - "gasCost": 3, - "memory": [], - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 312226, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 200547, - "gasCost": 3, - "memory": [], - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 312223, + "gasCost": 3, + "depth": 1, "stack": [ "0x80" ] }, { - "depth": 1, - "gas": 200544, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 312220, + "gasCost": 12, + "depth": 1, "stack": [ "0x80", "0x40" ] }, { - "depth": 1, - "gas": 200532, + "pc": 5, + "op": "CALLVALUE", + "gas": 312208, "gasCost": 2, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] + ] }, { - "depth": 1, - "gas": 200530, + "pc": 6, + "op": "DUP1", + "gas": 312206, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" ] }, { - "depth": 1, - "gas": 200527, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", "pc": 7, + "op": "ISZERO", + "gas": 312203, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 200524, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 8, - "stack": [ - "0x0", - "0x1" ] }, { + "pc": 8, + "op": "PUSH2", + "gas": 312200, + "gasCost": 3, "depth": 1, - "gas": 200521, - "gasCost": 10, + "stack": [ + "0x0", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", + ] + }, + { "pc": 11, + "op": "JUMPI", + "gas": 312197, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0x1", "0x10" - ] - }, - { - "depth": 1, - "gas": 200511, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 16, - "stack": [ - "0x0" ] }, { + "pc": 16, + "op": "JUMPDEST", + "gas": 312187, + "gasCost": 1, "depth": 1, - "gas": 200510, - "gasCost": 2, + "stack": [ + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 17, - "stack": [ - "0x0" ] }, { + "pc": 17, + "op": "POP", + "gas": 312186, + "gasCost": 2, "depth": 1, - "gas": 200508, - "gasCost": 3, + "stack": [ + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 18, - "stack": [] + ] }, { - "depth": 1, - "gas": 200505, + "pc": 18, + "op": "PUSH1", + "gas": 312184, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 20, - "stack": [ - "0x5" ] }, { - "depth": 1, - "gas": 200502, + "pc": 20, + "op": "PUSH1", + "gas": 312181, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 22, - "stack": [ - "0x5", - "0x0" ] }, { - "depth": 1, - "gas": 200499, + "pc": 22, + "op": "PUSH1", + "gas": 312178, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MLOAD", + ] + }, + { "pc": 24, + "op": "MLOAD", + "gas": 312175, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x40" - ] - }, - { - "depth": 1, - "gas": 200496, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", + ] + }, + { "pc": 25, + "op": "DUP1", + "gas": 312172, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80" - ] - }, - { - "depth": 1, - "gas": 200493, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", + ] + }, + { "pc": 26, + "op": "PUSH1", + "gas": 312169, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0x80" - ] - }, - { - "depth": 1, - "gas": 200490, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ADD", + ] + }, + { "pc": 28, + "op": "ADD", + "gas": 312166, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0x80", "0x40" - ] - }, - { - "depth": 1, - "gas": 200487, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", + ] + }, + { "pc": 29, + "op": "PUSH1", + "gas": 312163, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200484, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MSTORE", + ] + }, + { "pc": 31, + "op": "MSTORE", + "gas": 312160, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0xc0", "0x40" - ] - }, - { - "depth": 1, - "gas": 200481, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "op": "DUP1", + "0000000000000000000000000000000000000000000000000000000000000080" + ] + }, + { "pc": 32, + "op": "DUP1", + "gas": 312157, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80" - ] - }, - { - "depth": 1, - "gas": 200478, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "op": "PUSH1", + ] + }, + { "pc": 33, + "op": "PUSH1", + "gas": 312154, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0x80" - ] - }, - { - "depth": 1, - "gas": 200475, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "op": "DUP2", + ] + }, + { "pc": 35, + "op": "DUP2", + "gas": 312151, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0x80", "0x14" - ] - }, - { - "depth": 1, - "gas": 200472, - "gasCost": 9, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + "00000000000000000000000000000000000000000000000000000000000000c0" + ] + }, + { "pc": 36, + "op": "MSTORE", + "gas": 312148, + "gasCost": 9, + "depth": 1, "stack": [ "0x5", "0x0", @@ -373,104 +359,101 @@ "0x80", "0x14", "0x80" - ] - }, - { - "depth": 1, - "gas": 200463, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014" - ], - "op": "PUSH1", + "00000000000000000000000000000000000000000000000000000000000000c0" + ] + }, + { "pc": 37, + "op": "PUSH1", + "gas": 312139, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0x80" - ] - }, - { - "depth": 1, - "gas": 200460, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014" - ], - "op": "ADD", + ] + }, + { "pc": 39, + "op": "ADD", + "gas": 312136, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0x80", "0x20" - ] - }, - { - "depth": 1, - "gas": 200457, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014" - ], - "op": "PUSH32", + ] + }, + { "pc": 40, + "op": "PUSH32", + "gas": 312133, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0xa0" - ] - }, - { - "depth": 1, - "gas": 200454, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014" - ], - "op": "DUP2", + ] + }, + { "pc": 73, + "op": "DUP2", + "gas": 312130, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0xa0", "0x48656c6c6f207468697320697320612074657374000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 200451, - "gasCost": 6, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + "0000000000000000000000000000000000000000000000000000000000000014" + ] + }, + { "pc": 74, + "op": "MSTORE", + "gas": 312127, + "gasCost": 6, + "depth": 1, "stack": [ "0x5", "0x0", @@ -478,33 +461,27 @@ "0xa0", "0x48656c6c6f207468697320697320612074657374000000000000000000000000", "0xa0" - ] - }, - { - "depth": 1, - "gas": 200445, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "POP", + "0000000000000000000000000000000000000000000000000000000000000014" + ] + }, + { "pc": 75, + "op": "POP", + "gas": 312121, + "gasCost": 2, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0xa0" - ] - }, - { - "depth": 1, - "gas": 200443, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -512,19 +489,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH1", + ] + }, + { "pc": 76, + "op": "PUSH1", + "gas": 312119, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80" - ] - }, - { - "depth": 1, - "gas": 200440, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -532,20 +509,20 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "MLOAD", + ] + }, + { "pc": 78, + "op": "MLOAD", + "gas": 312116, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0x40" - ] - }, - { - "depth": 1, - "gas": 200437, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -553,20 +530,20 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 79, + "op": "PUSH2", + "gas": 312113, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200434, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -574,21 +551,21 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 82, + "op": "SWAP2", + "gas": 312110, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0xc0", "0x58" - ] - }, - { - "depth": 1, - "gas": 200431, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -596,21 +573,21 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 83, + "op": "SWAP1", + "gas": 312107, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x58", "0xc0", "0x80" - ] - }, - { - "depth": 1, - "gas": 200428, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -618,21 +595,21 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 84, + "op": "PUSH2", + "gas": 312104, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x58", "0x80", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200425, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -640,22 +617,22 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMP", + ] + }, + { "pc": 87, + "op": "JUMP", + "gas": 312101, + "gasCost": 8, + "depth": 1, "stack": [ "0x5", "0x0", "0x58", "0x80", "0xc0", - "0xf0" - ] - }, - { - "depth": 1, - "gas": 200417, - "gasCost": 1, + "0x121" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -663,21 +640,21 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 289, "op": "JUMPDEST", - "pc": 240, + "gas": 312093, + "gasCost": 1, + "depth": 1, "stack": [ "0x5", "0x0", "0x58", "0x80", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200416, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -685,21 +662,21 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 290, "op": "PUSH1", - "pc": 241, + "gas": 312092, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x58", "0x80", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200413, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -707,9 +684,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 292, "op": "DUP3", - "pc": 243, + "gas": 312089, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -717,12 +699,7 @@ "0x80", "0xc0", "0x0" - ] - }, - { - "depth": 1, - "gas": 200410, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -730,9 +707,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 293, "op": "MLOAD", - "pc": 244, + "gas": 312086, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -741,12 +723,7 @@ "0xc0", "0x0", "0x80" - ] - }, - { - "depth": 1, - "gas": 200407, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -754,9 +731,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 294, "op": "PUSH1", - "pc": 245, + "gas": 312083, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -765,12 +747,7 @@ "0xc0", "0x0", "0x14" - ] - }, - { - "depth": 1, - "gas": 200404, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -778,9 +755,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 296, "op": "JUMPDEST", - "pc": 247, + "gas": 312080, + "gasCost": 1, + "depth": 1, "stack": [ "0x5", "0x0", @@ -790,12 +772,7 @@ "0x0", "0x14", "0x0" - ] - }, - { - "depth": 1, - "gas": 200403, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -803,9 +780,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 297, "op": "DUP2", - "pc": 248, + "gas": 312079, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -815,12 +797,7 @@ "0x0", "0x14", "0x0" - ] - }, - { - "depth": 1, - "gas": 200400, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -828,9 +805,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 298, "op": "DUP2", - "pc": 249, + "gas": 312076, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -841,12 +823,7 @@ "0x14", "0x0", "0x14" - ] - }, - { - "depth": 1, - "gas": 200397, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -854,9 +831,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 299, "op": "LT", - "pc": 250, + "gas": 312073, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -868,12 +850,7 @@ "0x0", "0x14", "0x0" - ] - }, - { - "depth": 1, - "gas": 200394, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -881,9 +858,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 300, "op": "ISZERO", - "pc": 251, + "gas": 312070, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -894,12 +876,7 @@ "0x14", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 200391, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -907,9 +884,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 301, "op": "PUSH2", - "pc": 252, + "gas": 312067, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -920,12 +902,7 @@ "0x14", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 200388, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -933,9 +910,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 304, "op": "JUMPI", - "pc": 255, + "gas": 312064, + "gasCost": 10, + "depth": 1, "stack": [ "0x5", "0x0", @@ -946,13 +928,8 @@ "0x14", "0x0", "0x0", - "0x111" - ] - }, - { - "depth": 1, - "gas": 200378, - "gasCost": 3, + "0x142" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -960,9 +937,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 305, "op": "PUSH1", - "pc": 256, + "gas": 312054, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -972,12 +954,7 @@ "0x0", "0x14", "0x0" - ] - }, - { - "depth": 1, - "gas": 200375, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -985,9 +962,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 307, "op": "DUP2", - "pc": 258, + "gas": 312051, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -998,12 +980,7 @@ "0x14", "0x0", "0x20" - ] - }, - { - "depth": 1, - "gas": 200372, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1011,9 +988,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 308, "op": "DUP7", - "pc": 259, + "gas": 312048, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1025,12 +1007,7 @@ "0x0", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 200369, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1038,9 +1015,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 309, "op": "ADD", - "pc": 260, + "gas": 312045, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1053,12 +1035,7 @@ "0x20", "0x0", "0x80" - ] - }, - { - "depth": 1, - "gas": 200366, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1066,9 +1043,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 310, "op": "DUP2", - "pc": 261, + "gas": 312042, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1080,12 +1062,7 @@ "0x0", "0x20", "0x80" - ] - }, - { - "depth": 1, - "gas": 200363, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1093,9 +1070,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 311, "op": "ADD", - "pc": 262, + "gas": 312039, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1108,12 +1090,7 @@ "0x20", "0x80", "0x20" - ] - }, - { - "depth": 1, - "gas": 200360, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1121,9 +1098,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 312, "op": "MLOAD", - "pc": 263, + "gas": 312036, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1135,12 +1117,7 @@ "0x0", "0x20", "0xa0" - ] - }, - { - "depth": 1, - "gas": 200357, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1148,9 +1125,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 313, "op": "DUP6", - "pc": 264, + "gas": 312033, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1162,12 +1144,7 @@ "0x0", "0x20", "0x48656c6c6f207468697320697320612074657374000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 200354, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1175,9 +1152,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 314, "op": "DUP4", - "pc": 265, + "gas": 312030, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1190,12 +1172,7 @@ "0x20", "0x48656c6c6f207468697320697320612074657374000000000000000000000000", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200351, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1203,9 +1180,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 315, "op": "ADD", - "pc": 266, + "gas": 312027, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1219,23 +1201,22 @@ "0x48656c6c6f207468697320697320612074657374000000000000000000000000", "0xc0", "0x0" - ] - }, - { - "depth": 1, - "gas": 200348, - "gasCost": 6, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], + "48656c6c6f207468697320697320612074657374000000000000000000000000" + ] + }, + { + "pc": 316, "op": "MSTORE", - "pc": 267, + "gas": 312024, + "gasCost": 6, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1248,23 +1229,22 @@ "0x20", "0x48656c6c6f207468697320697320612074657374000000000000000000000000", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200342, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 317, "op": "ADD", - "pc": 268, + "gas": 312018, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1275,12 +1255,7 @@ "0x14", "0x0", "0x20" - ] - }, - { - "depth": 1, - "gas": 200339, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1289,9 +1264,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 318, "op": "PUSH2", - "pc": 269, + "gas": 312015, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1301,12 +1281,7 @@ "0x0", "0x14", "0x20" - ] - }, - { - "depth": 1, - "gas": 200336, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1315,9 +1290,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 321, "op": "JUMP", - "pc": 272, + "gas": 312012, + "gasCost": 8, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1327,13 +1307,8 @@ "0x0", "0x14", "0x20", - "0xf7" - ] - }, - { - "depth": 1, - "gas": 200328, - "gasCost": 1, + "0x128" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1342,9 +1317,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 296, "op": "JUMPDEST", - "pc": 247, + "gas": 312004, + "gasCost": 1, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1354,12 +1334,7 @@ "0x0", "0x14", "0x20" - ] - }, - { - "depth": 1, - "gas": 200327, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1368,9 +1343,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 297, "op": "DUP2", - "pc": 248, + "gas": 312003, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1380,12 +1360,7 @@ "0x0", "0x14", "0x20" - ] - }, - { - "depth": 1, - "gas": 200324, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1394,9 +1369,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 298, "op": "DUP2", - "pc": 249, + "gas": 312000, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1407,12 +1387,7 @@ "0x14", "0x20", "0x14" - ] - }, - { - "depth": 1, - "gas": 200321, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1421,9 +1396,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 299, "op": "LT", - "pc": 250, + "gas": 311997, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1435,12 +1415,7 @@ "0x20", "0x14", "0x20" - ] - }, - { - "depth": 1, - "gas": 200318, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1449,9 +1424,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 300, "op": "ISZERO", - "pc": 251, + "gas": 311994, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1462,12 +1442,7 @@ "0x14", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 200315, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1476,9 +1451,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 301, "op": "PUSH2", - "pc": 252, + "gas": 311991, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1489,12 +1469,7 @@ "0x14", "0x20", "0x1" - ] - }, - { - "depth": 1, - "gas": 200312, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1503,9 +1478,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 304, "op": "JUMPI", - "pc": 255, + "gas": 311988, + "gasCost": 10, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1516,13 +1496,8 @@ "0x14", "0x20", "0x1", - "0x111" - ] - }, - { - "depth": 1, - "gas": 200302, - "gasCost": 1, + "0x142" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1531,9 +1506,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 322, "op": "JUMPDEST", - "pc": 273, + "gas": 311978, + "gasCost": 1, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1543,12 +1523,7 @@ "0x0", "0x14", "0x20" - ] - }, - { - "depth": 1, - "gas": 200301, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1557,9 +1532,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 323, "op": "POP", - "pc": 274, + "gas": 311977, + "gasCost": 2, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1569,12 +1549,7 @@ "0x0", "0x14", "0x20" - ] - }, - { - "depth": 1, - "gas": 200299, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1583,9 +1558,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 324, "op": "PUSH1", - "pc": 275, + "gas": 311975, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1594,12 +1574,7 @@ "0xc0", "0x0", "0x14" - ] - }, - { - "depth": 1, - "gas": 200296, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1608,9 +1583,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 326, "op": "SWAP3", - "pc": 277, + "gas": 311972, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1620,12 +1600,7 @@ "0x0", "0x14", "0x0" - ] - }, - { - "depth": 1, - "gas": 200293, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1634,9 +1609,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 327, "op": "ADD", - "pc": 278, + "gas": 311969, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1646,12 +1626,7 @@ "0x0", "0x14", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200290, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1660,9 +1635,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 328, "op": "SWAP2", - "pc": 279, + "gas": 311966, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1671,12 +1651,7 @@ "0x0", "0x0", "0xd4" - ] - }, - { - "depth": 1, - "gas": 200287, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1685,9 +1660,14 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], + ] + }, + { + "pc": 329, "op": "DUP3", - "pc": 280, + "gas": 311963, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1696,12 +1676,7 @@ "0xd4", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 200284, - "gasCost": 6, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1709,11 +1684,15 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], + "48656c6c6f207468697320697320612074657374000000000000000000000000" + ] + }, + { + "pc": 330, "op": "MSTORE", - "pc": 281, + "gas": 311960, + "gasCost": 6, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1723,12 +1702,7 @@ "0x0", "0x0", "0xd4" - ] - }, - { - "depth": 1, - "gas": 200278, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1736,11 +1710,15 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], + "48656c6c6f207468697320697320612074657374000000000000000000000000" + ] + }, + { + "pc": 331, "op": "POP", - "pc": 282, + "gas": 311954, + "gasCost": 2, + "depth": 1, "stack": [ "0x5", "0x0", @@ -1748,12 +1726,7 @@ "0x80", "0xd4", "0x0" - ] - }, - { - "depth": 1, - "gas": 200276, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1763,21 +1736,21 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 332, "op": "SWAP2", - "pc": 283, + "gas": 311952, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x58", "0x80", "0xd4" - ] - }, - { - "depth": 1, - "gas": 200273, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1787,21 +1760,21 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 333, "op": "SWAP1", - "pc": 284, + "gas": 311949, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0xd4", "0x80", "0x58" - ] - }, - { - "depth": 1, - "gas": 200270, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1811,21 +1784,21 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 334, "op": "POP", - "pc": 285, + "gas": 311946, + "gasCost": 2, + "depth": 1, "stack": [ "0x5", "0x0", "0xd4", "0x58", "0x80" - ] - }, - { - "depth": 1, - "gas": 200268, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1835,20 +1808,20 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 335, "op": "JUMP", - "pc": 286, + "gas": 311944, + "gasCost": 8, + "depth": 1, "stack": [ "0x5", "0x0", "0xd4", "0x58" - ] - }, - { - "depth": 1, - "gas": 200260, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1858,19 +1831,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", + ] + }, + { "pc": 88, + "op": "JUMPDEST", + "gas": 311936, + "gasCost": 1, + "depth": 1, "stack": [ "0x5", "0x0", "0xd4" - ] - }, - { - "depth": 1, - "gas": 200259, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1880,19 +1853,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 89, + "op": "SWAP1", + "gas": 311935, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0xd4" - ] - }, - { - "depth": 1, - "gas": 200256, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1902,19 +1875,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 90, + "op": "DUP2", + "gas": 311932, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xd4", "0x0" - ] - }, - { - "depth": 1, - "gas": 200253, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1924,20 +1897,20 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 91, + "op": "MSTORE", + "gas": 311929, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xd4", "0x0", "0xd4" - ] - }, - { - "depth": 1, - "gas": 200250, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1947,18 +1920,18 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 92, - "stack": [ - "0x5", - "0xd4" ] }, { - "depth": 1, - "gas": 200247, + "pc": 92, + "op": "PUSH1", + "gas": 311926, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5", + "0xd4" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1968,19 +1941,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 94, + "op": "ADD", + "gas": 311923, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xd4", "0x20" - ] - }, - { - "depth": 1, - "gas": 200244, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1990,18 +1963,18 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 95, - "stack": [ - "0x5", - "0xf4" ] }, { - "depth": 1, - "gas": 200241, + "pc": 95, + "op": "PUSH1", + "gas": 311920, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5", + "0xf4" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2011,19 +1984,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", + ] + }, + { "pc": 97, + "op": "MLOAD", + "gas": 311917, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xf4", "0x40" - ] - }, - { - "depth": 1, - "gas": 200238, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2033,19 +2006,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", + ] + }, + { "pc": 98, + "op": "DUP1", + "gas": 311914, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xf4", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200235, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2055,20 +2028,20 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 99, + "op": "SWAP2", + "gas": 311911, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xf4", "0xc0", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200232, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2078,20 +2051,20 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", + ] + }, + { "pc": 100, + "op": "SUB", + "gas": 311908, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xc0", "0xc0", "0xf4" - ] - }, - { - "depth": 1, - "gas": 200229, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2101,19 +2074,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 101, + "op": "SWAP1", + "gas": 311905, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xc0", "0x34" - ] - }, - { - "depth": 1, - "gas": 200226, - "gasCost": 42, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2123,19 +2096,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", + ] + }, + { "pc": 102, + "op": "KECCAK256", + "gas": 311902, + "gasCost": 42, + "depth": 1, "stack": [ "0x5", "0x34", "0xc0" - ] - }, - { - "depth": 1, - "gas": 200184, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2145,18 +2118,18 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 103, - "stack": [ - "0x5", - "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466" ] }, { - "depth": 1, - "gas": 200181, + "pc": 103, + "op": "DUP2", + "gas": 311860, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5", + "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2166,19 +2139,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 104, + "op": "SWAP1", + "gas": 311857, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466", "0x5" - ] - }, - { - "depth": 1, - "gas": 200178, - "gasCost": 22100, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2188,19 +2161,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", + ] + }, + { "pc": 105, + "op": "SSTORE", + "gas": 311854, + "gasCost": 22100, + "depth": 1, "stack": [ "0x5", "0x5", "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466" - ] - }, - { - "depth": 1, - "gas": 178078, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2211,16 +2184,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "op": "POP", - "pc": 106, - "stack": [ - "0x5" - ] + "storage": { + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005" + } }, { + "pc": 106, + "op": "POP", + "gas": 289754, + "gasCost": 2, "depth": 1, - "gas": 178076, - "gasCost": 3, + "stack": [ + "0x5" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2230,15 +2206,15 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 107, - "stack": [] + ] }, { - "depth": 1, - "gas": 178073, + "pc": 107, + "op": "PUSH1", + "gas": 289752, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2248,17 +2224,17 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 109, - "stack": [ - "0x2a" ] }, { - "depth": 1, - "gas": 178070, + "pc": 109, + "op": "PUSH1", + "gas": 289749, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2268,18 +2244,18 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 111, - "stack": [ - "0x2a", - "0x0" ] }, { - "depth": 1, - "gas": 178067, + "pc": 111, + "op": "PUSH1", + "gas": 289746, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2289,19 +2265,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", + ] + }, + { "pc": 113, + "op": "MLOAD", + "gas": 289743, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0x40" - ] - }, - { - "depth": 1, - "gas": 178064, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2311,19 +2287,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", + ] + }, + { "pc": 114, + "op": "DUP1", + "gas": 289740, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0" - ] - }, - { - "depth": 1, - "gas": 178061, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2333,20 +2309,20 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", + ] + }, + { "pc": 115, + "op": "PUSH1", + "gas": 289737, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0xc0" - ] - }, - { - "depth": 1, - "gas": 178058, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2356,21 +2332,21 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 117, + "op": "ADD", + "gas": 289734, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0xc0", "0x80" - ] - }, - { - "depth": 1, - "gas": 178055, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2380,20 +2356,20 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", + ] + }, + { "pc": 118, + "op": "PUSH1", + "gas": 289731, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0x140" - ] - }, - { - "depth": 1, - "gas": 178052, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2403,43 +2379,43 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 120, + "op": "MSTORE", + "gas": 289728, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0x140", "0x40" - ] - }, - { - "depth": 1, - "gas": 178049, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", + "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", + ] + }, + { "pc": 121, + "op": "DUP1", + "gas": 289725, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0" - ] - }, - { - "depth": 1, - "gas": 178046, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2449,20 +2425,20 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", + ] + }, + { "pc": 122, + "op": "PUSH1", + "gas": 289722, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0xc0" - ] - }, - { - "depth": 1, - "gas": 178043, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2472,21 +2448,21 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 124, + "op": "DUP2", + "gas": 289719, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0xc0", "0x52" - ] - }, - { - "depth": 1, - "gas": 178040, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2496,9 +2472,14 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 125, + "op": "MSTORE", + "gas": 289716, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -2506,12 +2487,7 @@ "0xc0", "0x52", "0xc0" - ] - }, - { - "depth": 1, - "gas": 178037, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2519,22 +2495,22 @@ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000052", + "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", + ] + }, + { "pc": 126, + "op": "PUSH1", + "gas": 289713, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0xc0" - ] - }, - { - "depth": 1, - "gas": 178034, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2544,21 +2520,21 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000052", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 128, - "stack": [ + "op": "ADD", + "gas": 289710, + "gasCost": 3, + "depth": 1, + "stack": [ "0x2a", "0x0", "0xc0", "0xc0", "0x20" - ] - }, - { - "depth": 1, - "gas": 178031, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2568,20 +2544,20 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000052", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 129, + "op": "PUSH2", + "gas": 289707, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0xe0" - ] - }, - { - "depth": 1, - "gas": 178028, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2591,21 +2567,21 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000052", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", + ] + }, + { "pc": 132, + "op": "PUSH1", + "gas": 289704, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0xe0", - "0x524" - ] - }, - { - "depth": 1, - "gas": 178025, - "gasCost": 3, + "0x555" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2615,22 +2591,22 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000052", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 134, + "op": "SWAP2", + "gas": 289701, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0xe0", - "0x524", + "0x555", "0x52" - ] - }, - { - "depth": 1, - "gas": 178022, - "gasCost": 18, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2639,25 +2615,23 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000052", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "CODECOPY", + ] + }, + { "pc": 135, + "op": "CODECOPY", + "gas": 289698, + "gasCost": 18, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0x52", - "0x524", + "0x555", "0xe0" - ] - }, - { - "depth": 1, - "gas": 178004, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2666,22 +2640,20 @@ "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000052", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH1", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { "pc": 136, + "op": "PUSH1", + "gas": 289680, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0" - ] - }, - { - "depth": 1, - "gas": 178001, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2693,20 +2665,20 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "MLOAD", + ] + }, + { "pc": 138, + "op": "MLOAD", + "gas": 289677, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0x40" - ] - }, - { - "depth": 1, - "gas": 177998, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2718,20 +2690,20 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 139, + "op": "PUSH2", + "gas": 289674, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0x140" - ] - }, - { - "depth": 1, - "gas": 177995, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2743,21 +2715,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 142, + "op": "SWAP2", + "gas": 289671, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xc0", "0x140", "0x94" - ] - }, - { - "depth": 1, - "gas": 177992, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2769,21 +2741,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 143, + "op": "SWAP1", + "gas": 289668, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0x94", "0x140", "0xc0" - ] - }, - { - "depth": 1, - "gas": 177989, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2795,21 +2767,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 144, + "op": "PUSH2", + "gas": 289665, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0x94", "0xc0", "0x140" - ] - }, - { - "depth": 1, - "gas": 177986, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2821,22 +2793,22 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMP", + ] + }, + { "pc": 147, + "op": "JUMP", + "gas": 289662, + "gasCost": 8, + "depth": 1, "stack": [ "0x2a", "0x0", "0x94", "0xc0", "0x140", - "0xf0" - ] - }, - { - "depth": 1, - "gas": 177978, - "gasCost": 1, + "0x121" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2848,21 +2820,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 289, "op": "JUMPDEST", - "pc": 240, + "gas": 289654, + "gasCost": 1, + "depth": 1, "stack": [ "0x2a", "0x0", "0x94", "0xc0", "0x140" - ] - }, - { - "depth": 1, - "gas": 177977, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2874,21 +2846,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 290, "op": "PUSH1", - "pc": 241, + "gas": 289653, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0x94", "0xc0", "0x140" - ] - }, - { - "depth": 1, - "gas": 177974, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2900,9 +2872,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 292, "op": "DUP3", - "pc": 243, + "gas": 289650, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -2910,12 +2887,7 @@ "0xc0", "0x140", "0x0" - ] - }, - { - "depth": 1, - "gas": 177971, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2927,9 +2899,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 293, "op": "MLOAD", - "pc": 244, + "gas": 289647, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -2938,12 +2915,7 @@ "0x140", "0x0", "0xc0" - ] - }, - { - "depth": 1, - "gas": 177968, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2955,9 +2927,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 294, "op": "PUSH1", - "pc": 245, + "gas": 289644, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -2966,12 +2943,7 @@ "0x140", "0x0", "0x52" - ] - }, - { - "depth": 1, - "gas": 177965, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2983,9 +2955,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 296, "op": "JUMPDEST", - "pc": 247, + "gas": 289641, + "gasCost": 1, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -2995,12 +2972,7 @@ "0x0", "0x52", "0x0" - ] - }, - { - "depth": 1, - "gas": 177964, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3012,9 +2984,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 297, "op": "DUP2", - "pc": 248, + "gas": 289640, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3024,12 +3001,7 @@ "0x0", "0x52", "0x0" - ] - }, - { - "depth": 1, - "gas": 177961, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3041,9 +3013,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 298, "op": "DUP2", - "pc": 249, + "gas": 289637, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3054,12 +3031,7 @@ "0x52", "0x0", "0x52" - ] - }, - { - "depth": 1, - "gas": 177958, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3071,9 +3043,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 299, "op": "LT", - "pc": 250, + "gas": 289634, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3085,12 +3062,7 @@ "0x0", "0x52", "0x0" - ] - }, - { - "depth": 1, - "gas": 177955, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3102,9 +3074,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 300, "op": "ISZERO", - "pc": 251, + "gas": 289631, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3115,12 +3092,7 @@ "0x52", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 177952, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3132,9 +3104,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 301, "op": "PUSH2", - "pc": 252, + "gas": 289628, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3145,12 +3122,7 @@ "0x52", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 177949, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3162,9 +3134,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 304, "op": "JUMPI", - "pc": 255, + "gas": 289625, + "gasCost": 10, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3175,13 +3152,8 @@ "0x52", "0x0", "0x0", - "0x111" - ] - }, - { - "depth": 1, - "gas": 177939, - "gasCost": 3, + "0x142" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3193,9 +3165,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 305, "op": "PUSH1", - "pc": 256, + "gas": 289615, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3205,12 +3182,7 @@ "0x0", "0x52", "0x0" - ] - }, - { - "depth": 1, - "gas": 177936, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3222,9 +3194,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 307, "op": "DUP2", - "pc": 258, + "gas": 289612, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3235,12 +3212,7 @@ "0x52", "0x0", "0x20" - ] - }, - { - "depth": 1, - "gas": 177933, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3252,9 +3224,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 308, "op": "DUP7", - "pc": 259, + "gas": 289609, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3266,12 +3243,7 @@ "0x0", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 177930, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3283,9 +3255,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 309, "op": "ADD", - "pc": 260, + "gas": 289606, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3298,12 +3275,7 @@ "0x20", "0x0", "0xc0" - ] - }, - { - "depth": 1, - "gas": 177927, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3315,9 +3287,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 310, "op": "DUP2", - "pc": 261, + "gas": 289603, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3329,12 +3306,7 @@ "0x0", "0x20", "0xc0" - ] - }, - { - "depth": 1, - "gas": 177924, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3346,9 +3318,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 311, "op": "ADD", - "pc": 262, + "gas": 289600, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3361,12 +3338,7 @@ "0x20", "0xc0", "0x20" - ] - }, - { - "depth": 1, - "gas": 177921, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3378,9 +3350,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 312, "op": "MLOAD", - "pc": 263, + "gas": 289597, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3392,12 +3369,7 @@ "0x0", "0x20", "0xe0" - ] - }, - { - "depth": 1, - "gas": 177918, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3409,9 +3381,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 313, "op": "DUP6", - "pc": 264, + "gas": 289594, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3423,12 +3400,7 @@ "0x0", "0x20", "0x4120766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 177915, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3440,9 +3412,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 314, "op": "DUP4", - "pc": 265, + "gas": 289591, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3455,12 +3432,7 @@ "0x20", "0x4120766572797665727976657279766572797665727976657279766572797665", "0x140" - ] - }, - { - "depth": 1, - "gas": 177912, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3472,9 +3444,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 315, "op": "ADD", - "pc": 266, + "gas": 289588, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3488,12 +3465,7 @@ "0x4120766572797665727976657279766572797665727976657279766572797665", "0x140", "0x0" - ] - }, - { - "depth": 1, - "gas": 177909, - "gasCost": 6, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3504,11 +3476,15 @@ "0000000000000000000000000000000000000000000000000000000000000052", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], + "727976657279206c6f6e6720737472696e670000000000000000000000000000" + ] + }, + { + "pc": 316, "op": "MSTORE", - "pc": 267, + "gas": 289585, + "gasCost": 6, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3521,12 +3497,7 @@ "0x20", "0x4120766572797665727976657279766572797665727976657279766572797665", "0x140" - ] - }, - { - "depth": 1, - "gas": 177903, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3537,11 +3508,15 @@ "0000000000000000000000000000000000000000000000000000000000000052", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665" - ], + "727976657279206c6f6e6720737472696e670000000000000000000000000000" + ] + }, + { + "pc": 317, "op": "ADD", - "pc": 268, + "gas": 289579, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3552,12 +3527,7 @@ "0x52", "0x0", "0x20" - ] - }, - { - "depth": 1, - "gas": 177900, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3570,9 +3540,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 318, "op": "PUSH2", - "pc": 269, + "gas": 289576, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3582,12 +3557,7 @@ "0x0", "0x52", "0x20" - ] - }, - { - "depth": 1, - "gas": 177897, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3600,9 +3570,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 321, "op": "JUMP", - "pc": 272, + "gas": 289573, + "gasCost": 8, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3612,13 +3587,8 @@ "0x0", "0x52", "0x20", - "0xf7" - ] - }, - { - "depth": 1, - "gas": 177889, - "gasCost": 1, + "0x128" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3631,9 +3601,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 296, "op": "JUMPDEST", - "pc": 247, + "gas": 289565, + "gasCost": 1, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3643,12 +3618,7 @@ "0x0", "0x52", "0x20" - ] - }, - { - "depth": 1, - "gas": 177888, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3661,9 +3631,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 297, "op": "DUP2", - "pc": 248, + "gas": 289564, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3673,12 +3648,7 @@ "0x0", "0x52", "0x20" - ] - }, - { - "depth": 1, - "gas": 177885, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3691,9 +3661,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 298, "op": "DUP2", - "pc": 249, + "gas": 289561, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3704,12 +3679,7 @@ "0x52", "0x20", "0x52" - ] - }, - { - "depth": 1, - "gas": 177882, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3722,9 +3692,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 299, "op": "LT", - "pc": 250, + "gas": 289558, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3736,12 +3711,7 @@ "0x20", "0x52", "0x20" - ] - }, - { - "depth": 1, - "gas": 177879, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3754,9 +3724,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 300, "op": "ISZERO", - "pc": 251, + "gas": 289555, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3767,12 +3742,7 @@ "0x52", "0x20", "0x1" - ] - }, - { - "depth": 1, - "gas": 177876, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3785,9 +3755,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 301, "op": "PUSH2", - "pc": 252, + "gas": 289552, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3798,12 +3773,7 @@ "0x52", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 177873, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3816,9 +3786,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 304, "op": "JUMPI", - "pc": 255, + "gas": 289549, + "gasCost": 10, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3829,13 +3804,8 @@ "0x52", "0x20", "0x0", - "0x111" - ] - }, - { - "depth": 1, - "gas": 177863, - "gasCost": 3, + "0x142" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3848,9 +3818,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 305, "op": "PUSH1", - "pc": 256, + "gas": 289539, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3860,12 +3835,7 @@ "0x0", "0x52", "0x20" - ] - }, - { - "depth": 1, - "gas": 177860, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3878,9 +3848,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 307, "op": "DUP2", - "pc": 258, + "gas": 289536, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3891,12 +3866,7 @@ "0x52", "0x20", "0x20" - ] - }, - { - "depth": 1, - "gas": 177857, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3909,9 +3879,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 308, "op": "DUP7", - "pc": 259, + "gas": 289533, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3923,12 +3898,7 @@ "0x20", "0x20", "0x20" - ] - }, - { - "depth": 1, - "gas": 177854, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3941,9 +3911,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 309, "op": "ADD", - "pc": 260, + "gas": 289530, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3956,12 +3931,7 @@ "0x20", "0x20", "0xc0" - ] - }, - { - "depth": 1, - "gas": 177851, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3974,9 +3944,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 310, "op": "DUP2", - "pc": 261, + "gas": 289527, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -3988,12 +3963,7 @@ "0x20", "0x20", "0xe0" - ] - }, - { - "depth": 1, - "gas": 177848, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4006,9 +3976,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 311, "op": "ADD", - "pc": 262, + "gas": 289524, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4021,12 +3996,7 @@ "0x20", "0xe0", "0x20" - ] - }, - { - "depth": 1, - "gas": 177845, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4039,9 +4009,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 312, "op": "MLOAD", - "pc": 263, + "gas": 289521, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4053,12 +4028,7 @@ "0x20", "0x20", "0x100" - ] - }, - { - "depth": 1, - "gas": 177842, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4071,9 +4041,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 313, "op": "DUP6", - "pc": 264, + "gas": 289518, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4085,12 +4060,7 @@ "0x20", "0x20", "0x7279766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 177839, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4103,9 +4073,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 314, "op": "DUP4", - "pc": 265, + "gas": 289515, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4118,12 +4093,7 @@ "0x20", "0x7279766572797665727976657279766572797665727976657279766572797665", "0x140" - ] - }, - { - "depth": 1, - "gas": 177836, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4136,9 +4106,14 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 315, "op": "ADD", - "pc": 266, + "gas": 289512, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4152,12 +4127,7 @@ "0x7279766572797665727976657279766572797665727976657279766572797665", "0x140", "0x20" - ] - }, - { - "depth": 1, - "gas": 177833, - "gasCost": 6, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4169,11 +4139,15 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], + "4120766572797665727976657279766572797665727976657279766572797665" + ] + }, + { + "pc": 316, "op": "MSTORE", - "pc": 267, + "gas": 289509, + "gasCost": 6, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4186,12 +4160,7 @@ "0x20", "0x7279766572797665727976657279766572797665727976657279766572797665", "0x160" - ] - }, - { - "depth": 1, - "gas": 177827, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4203,11 +4172,15 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], + "4120766572797665727976657279766572797665727976657279766572797665" + ] + }, + { + "pc": 317, "op": "ADD", - "pc": 268, + "gas": 289503, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4218,12 +4191,7 @@ "0x52", "0x20", "0x20" - ] - }, - { - "depth": 1, - "gas": 177824, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4237,9 +4205,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 318, "op": "PUSH2", - "pc": 269, + "gas": 289500, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4249,12 +4222,7 @@ "0x0", "0x52", "0x40" - ] - }, - { - "depth": 1, - "gas": 177821, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4268,9 +4236,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 321, "op": "JUMP", - "pc": 272, + "gas": 289497, + "gasCost": 8, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4280,13 +4253,8 @@ "0x0", "0x52", "0x40", - "0xf7" - ] - }, - { - "depth": 1, - "gas": 177813, - "gasCost": 1, + "0x128" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4300,9 +4268,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 296, "op": "JUMPDEST", - "pc": 247, + "gas": 289489, + "gasCost": 1, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4312,12 +4285,7 @@ "0x0", "0x52", "0x40" - ] - }, - { - "depth": 1, - "gas": 177812, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4331,9 +4299,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 297, "op": "DUP2", - "pc": 248, + "gas": 289488, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4343,12 +4316,7 @@ "0x0", "0x52", "0x40" - ] - }, - { - "depth": 1, - "gas": 177809, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4362,9 +4330,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 298, "op": "DUP2", - "pc": 249, + "gas": 289485, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4375,12 +4348,7 @@ "0x52", "0x40", "0x52" - ] - }, - { - "depth": 1, - "gas": 177806, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4394,9 +4362,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 299, "op": "LT", - "pc": 250, + "gas": 289482, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4408,12 +4381,7 @@ "0x40", "0x52", "0x40" - ] - }, - { - "depth": 1, - "gas": 177803, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4427,9 +4395,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 300, "op": "ISZERO", - "pc": 251, + "gas": 289479, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4440,12 +4413,7 @@ "0x52", "0x40", "0x1" - ] - }, - { - "depth": 1, - "gas": 177800, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4459,9 +4427,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 301, "op": "PUSH2", - "pc": 252, + "gas": 289476, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4472,12 +4445,7 @@ "0x52", "0x40", "0x0" - ] - }, - { - "depth": 1, - "gas": 177797, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4491,9 +4459,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 304, "op": "JUMPI", - "pc": 255, + "gas": 289473, + "gasCost": 10, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4504,13 +4477,8 @@ "0x52", "0x40", "0x0", - "0x111" - ] - }, - { - "depth": 1, - "gas": 177787, - "gasCost": 3, + "0x142" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4524,9 +4492,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 305, "op": "PUSH1", - "pc": 256, + "gas": 289463, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4536,12 +4509,7 @@ "0x0", "0x52", "0x40" - ] - }, - { - "depth": 1, - "gas": 177784, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4555,9 +4523,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 307, "op": "DUP2", - "pc": 258, + "gas": 289460, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4568,12 +4541,7 @@ "0x52", "0x40", "0x20" - ] - }, - { - "depth": 1, - "gas": 177781, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4587,9 +4555,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 308, "op": "DUP7", - "pc": 259, + "gas": 289457, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4601,12 +4574,7 @@ "0x40", "0x20", "0x40" - ] - }, - { - "depth": 1, - "gas": 177778, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4620,9 +4588,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 309, "op": "ADD", - "pc": 260, + "gas": 289454, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4635,12 +4608,7 @@ "0x20", "0x40", "0xc0" - ] - }, - { - "depth": 1, - "gas": 177775, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4654,9 +4622,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 310, "op": "DUP2", - "pc": 261, + "gas": 289451, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4668,12 +4641,7 @@ "0x40", "0x20", "0x100" - ] - }, - { - "depth": 1, - "gas": 177772, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4687,9 +4655,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 311, "op": "ADD", - "pc": 262, + "gas": 289448, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4702,12 +4675,7 @@ "0x20", "0x100", "0x20" - ] - }, - { - "depth": 1, - "gas": 177769, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4721,9 +4689,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 312, "op": "MLOAD", - "pc": 263, + "gas": 289445, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4735,12 +4708,7 @@ "0x40", "0x20", "0x120" - ] - }, - { - "depth": 1, - "gas": 177766, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4754,9 +4722,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 313, "op": "DUP6", - "pc": 264, + "gas": 289442, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4768,12 +4741,7 @@ "0x40", "0x20", "0x727976657279206c6f6e6720737472696e670000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 177763, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4787,9 +4755,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 314, "op": "DUP4", - "pc": 265, + "gas": 289439, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4802,12 +4775,7 @@ "0x20", "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", "0x140" - ] - }, - { - "depth": 1, - "gas": 177760, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4821,9 +4789,14 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], + ] + }, + { + "pc": 315, "op": "ADD", - "pc": 266, + "gas": 289436, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4837,12 +4810,7 @@ "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", "0x140", "0x40" - ] - }, - { - "depth": 1, - "gas": 177757, - "gasCost": 6, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4855,12 +4823,16 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 267, - "stack": [ + "7279766572797665727976657279766572797665727976657279766572797665" + ] + }, + { + "pc": 316, + "op": "MSTORE", + "gas": 289433, + "gasCost": 6, + "depth": 1, + "stack": [ "0x2a", "0x0", "0x94", @@ -4872,12 +4844,7 @@ "0x20", "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", "0x180" - ] - }, - { - "depth": 1, - "gas": 177751, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4890,11 +4857,15 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + "7279766572797665727976657279766572797665727976657279766572797665" + ] + }, + { + "pc": 317, "op": "ADD", - "pc": 268, + "gas": 289427, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4905,12 +4876,7 @@ "0x52", "0x40", "0x20" - ] - }, - { - "depth": 1, - "gas": 177748, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4925,9 +4891,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 318, "op": "PUSH2", - "pc": 269, + "gas": 289424, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4937,12 +4908,7 @@ "0x0", "0x52", "0x60" - ] - }, - { - "depth": 1, - "gas": 177745, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4957,9 +4923,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 321, "op": "JUMP", - "pc": 272, + "gas": 289421, + "gasCost": 8, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -4969,13 +4940,8 @@ "0x0", "0x52", "0x60", - "0xf7" - ] - }, - { - "depth": 1, - "gas": 177737, - "gasCost": 1, + "0x128" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4990,9 +4956,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 296, "op": "JUMPDEST", - "pc": 247, + "gas": 289413, + "gasCost": 1, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5002,12 +4973,7 @@ "0x0", "0x52", "0x60" - ] - }, - { - "depth": 1, - "gas": 177736, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5022,9 +4988,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 297, "op": "DUP2", - "pc": 248, + "gas": 289412, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5034,12 +5005,7 @@ "0x0", "0x52", "0x60" - ] - }, - { - "depth": 1, - "gas": 177733, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5054,9 +5020,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 298, "op": "DUP2", - "pc": 249, + "gas": 289409, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5067,12 +5038,7 @@ "0x52", "0x60", "0x52" - ] - }, - { - "depth": 1, - "gas": 177730, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5087,9 +5053,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 299, "op": "LT", - "pc": 250, + "gas": 289406, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5101,12 +5072,7 @@ "0x60", "0x52", "0x60" - ] - }, - { - "depth": 1, - "gas": 177727, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5121,9 +5087,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 300, "op": "ISZERO", - "pc": 251, + "gas": 289403, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5134,12 +5105,7 @@ "0x52", "0x60", "0x0" - ] - }, - { - "depth": 1, - "gas": 177724, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5154,9 +5120,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 301, "op": "PUSH2", - "pc": 252, + "gas": 289400, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5167,12 +5138,7 @@ "0x52", "0x60", "0x1" - ] - }, - { - "depth": 1, - "gas": 177721, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5187,9 +5153,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 304, "op": "JUMPI", - "pc": 255, + "gas": 289397, + "gasCost": 10, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5200,13 +5171,8 @@ "0x52", "0x60", "0x1", - "0x111" - ] - }, - { - "depth": 1, - "gas": 177711, - "gasCost": 1, + "0x142" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5221,9 +5187,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 322, "op": "JUMPDEST", - "pc": 273, + "gas": 289387, + "gasCost": 1, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5233,12 +5204,7 @@ "0x0", "0x52", "0x60" - ] - }, - { - "depth": 1, - "gas": 177710, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5253,9 +5219,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 323, "op": "POP", - "pc": 274, + "gas": 289386, + "gasCost": 2, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5265,12 +5236,7 @@ "0x0", "0x52", "0x60" - ] - }, - { - "depth": 1, - "gas": 177708, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5285,9 +5251,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 324, "op": "PUSH1", - "pc": 275, + "gas": 289384, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5296,12 +5267,7 @@ "0x140", "0x0", "0x52" - ] - }, - { - "depth": 1, - "gas": 177705, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5316,9 +5282,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 326, "op": "SWAP3", - "pc": 277, + "gas": 289381, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5328,12 +5299,7 @@ "0x0", "0x52", "0x0" - ] - }, - { - "depth": 1, - "gas": 177702, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5348,9 +5314,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 327, "op": "ADD", - "pc": 278, + "gas": 289378, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5360,12 +5331,7 @@ "0x0", "0x52", "0x140" - ] - }, - { - "depth": 1, - "gas": 177699, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5380,9 +5346,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 328, "op": "SWAP2", - "pc": 279, + "gas": 289375, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5391,12 +5362,7 @@ "0x0", "0x0", "0x192" - ] - }, - { - "depth": 1, - "gas": 177696, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5411,9 +5377,14 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], + ] + }, + { + "pc": 329, "op": "DUP3", - "pc": 280, + "gas": 289372, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5422,12 +5393,7 @@ "0x192", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 177693, - "gasCost": 6, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5441,11 +5407,15 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], + "727976657279206c6f6e6720737472696e670000000000000000000000000000" + ] + }, + { + "pc": 330, "op": "MSTORE", - "pc": 281, + "gas": 289369, + "gasCost": 6, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5455,12 +5425,7 @@ "0x0", "0x0", "0x192" - ] - }, - { - "depth": 1, - "gas": 177687, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5474,11 +5439,15 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], + "727976657279206c6f6e6720737472696e670000000000000000000000000000" + ] + }, + { + "pc": 331, "op": "POP", - "pc": 282, + "gas": 289363, + "gasCost": 2, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -5486,12 +5455,7 @@ "0xc0", "0x192", "0x0" - ] - }, - { - "depth": 1, - "gas": 177685, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5507,21 +5471,21 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 332, "op": "SWAP2", - "pc": 283, + "gas": 289361, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0x94", "0xc0", "0x192" - ] - }, - { - "depth": 1, - "gas": 177682, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5537,21 +5501,21 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 333, "op": "SWAP1", - "pc": 284, + "gas": 289358, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0x192", "0xc0", "0x94" - ] - }, - { - "depth": 1, - "gas": 177679, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5567,21 +5531,21 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 334, "op": "POP", - "pc": 285, + "gas": 289355, + "gasCost": 2, + "depth": 1, "stack": [ "0x2a", "0x0", "0x192", "0x94", "0xc0" - ] - }, - { - "depth": 1, - "gas": 177677, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5597,20 +5561,20 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 335, "op": "JUMP", - "pc": 286, + "gas": 289353, + "gasCost": 8, + "depth": 1, "stack": [ "0x2a", "0x0", "0x192", "0x94" - ] - }, - { - "depth": 1, - "gas": 177669, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5626,19 +5590,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", + ] + }, + { "pc": 148, + "op": "JUMPDEST", + "gas": 289345, + "gasCost": 1, + "depth": 1, "stack": [ "0x2a", "0x0", "0x192" - ] - }, - { - "depth": 1, - "gas": 177668, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5654,19 +5618,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 149, + "op": "SWAP1", + "gas": 289344, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0x192" - ] - }, - { - "depth": 1, - "gas": 177665, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5682,19 +5646,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 150, + "op": "DUP2", + "gas": 289341, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x192", "0x0" - ] - }, - { - "depth": 1, - "gas": 177662, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5710,20 +5674,20 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 151, + "op": "MSTORE", + "gas": 289338, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x192", "0x0", "0x192" - ] - }, - { - "depth": 1, - "gas": 177659, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5739,18 +5703,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 152, - "stack": [ - "0x2a", - "0x192" ] }, { - "depth": 1, - "gas": 177656, + "pc": 152, + "op": "PUSH1", + "gas": 289335, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x192" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5766,19 +5730,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 154, + "op": "ADD", + "gas": 289332, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x192", "0x20" - ] - }, - { - "depth": 1, - "gas": 177653, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5794,18 +5758,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 155, - "stack": [ - "0x2a", - "0x1b2" ] }, { - "depth": 1, - "gas": 177650, + "pc": 155, + "op": "PUSH1", + "gas": 289329, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x1b2" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5821,19 +5785,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", + ] + }, + { "pc": 157, + "op": "MLOAD", + "gas": 289326, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x1b2", "0x40" - ] - }, - { - "depth": 1, - "gas": 177647, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5849,19 +5813,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", + ] + }, + { "pc": 158, + "op": "DUP1", + "gas": 289323, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x1b2", "0x140" - ] - }, - { - "depth": 1, - "gas": 177644, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5877,20 +5841,20 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 159, + "op": "SWAP2", + "gas": 289320, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x1b2", "0x140", "0x140" - ] - }, - { - "depth": 1, - "gas": 177641, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5906,20 +5870,20 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", + ] + }, + { "pc": 160, + "op": "SUB", + "gas": 289317, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x140", "0x140", "0x1b2" - ] - }, - { - "depth": 1, - "gas": 177638, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5935,19 +5899,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 161, + "op": "SWAP1", + "gas": 289314, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x140", "0x72" - ] - }, - { - "depth": 1, - "gas": 177635, - "gasCost": 54, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5963,19 +5927,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", + ] + }, + { "pc": 162, + "op": "KECCAK256", + "gas": 289311, + "gasCost": 54, + "depth": 1, "stack": [ "0x2a", "0x72", "0x140" - ] - }, - { - "depth": 1, - "gas": 177581, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5991,18 +5955,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 163, - "stack": [ - "0x2a", - "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb" ] }, { - "depth": 1, - "gas": 177578, + "pc": 163, + "op": "DUP2", + "gas": 289257, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6018,19 +5982,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 164, + "op": "SWAP1", + "gas": 289254, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb", "0x2a" - ] - }, - { - "depth": 1, - "gas": 177575, - "gasCost": 22100, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6046,19 +6010,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", + ] + }, + { "pc": 165, + "op": "SSTORE", + "gas": 289251, + "gasCost": 22100, + "depth": 1, "stack": [ "0x2a", "0x2a", "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb" - ] - }, - { - "depth": 1, - "gas": 155475, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6075,16 +6039,20 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "op": "POP", - "pc": 166, - "stack": [ - "0x2a" - ] + "storage": { + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005" + } }, { + "pc": 166, + "op": "POP", + "gas": 267151, + "gasCost": 2, "depth": 1, - "gas": 155473, - "gasCost": 3, + "stack": [ + "0x2a" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6100,15 +6068,15 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 167, - "stack": [] + ] }, { - "depth": 1, - "gas": 155470, + "pc": 167, + "op": "PUSH1", + "gas": 267149, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6124,17 +6092,17 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 169, - "stack": [ - "0x40" ] }, { - "depth": 1, - "gas": 155467, + "pc": 169, + "op": "MLOAD", + "gas": 267146, "gasCost": 3, + "depth": 1, + "stack": [ + "0x40" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6150,17 +6118,17 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 170, - "stack": [ - "0x140" ] }, { - "depth": 1, - "gas": 155464, + "pc": 170, + "op": "DUP1", + "gas": 267143, "gasCost": 3, + "depth": 1, + "stack": [ + "0x140" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6176,18 +6144,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 171, - "stack": [ - "0x140", - "0x140" ] }, { - "depth": 1, - "gas": 155461, + "pc": 171, + "op": "PUSH1", + "gas": 267140, "gasCost": 3, + "depth": 1, + "stack": [ + "0x140", + "0x140" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6203,19 +6171,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 173, + "op": "ADD", + "gas": 267137, + "gasCost": 3, + "depth": 1, "stack": [ "0x140", "0x140", "0x40" - ] - }, - { - "depth": 1, - "gas": 155458, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6231,18 +6199,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 174, - "stack": [ - "0x140", - "0x180" ] }, { - "depth": 1, - "gas": 155455, + "pc": 174, + "op": "PUSH1", + "gas": 267134, "gasCost": 3, + "depth": 1, + "stack": [ + "0x140", + "0x180" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6258,23 +6226,23 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 176, + "op": "MSTORE", + "gas": 267131, + "gasCost": 3, + "depth": 1, "stack": [ "0x140", "0x180", "0x40" - ] - }, - { - "depth": 1, - "gas": 155452, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -6286,17 +6254,17 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 177, - "stack": [ - "0x140" ] }, { - "depth": 1, - "gas": 155449, + "pc": 177, + "op": "DUP1", + "gas": 267128, "gasCost": 3, + "depth": 1, + "stack": [ + "0x140" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6312,18 +6280,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 178, - "stack": [ - "0x140", - "0x140" ] }, { - "depth": 1, - "gas": 155446, + "pc": 178, + "op": "PUSH1", + "gas": 267125, "gasCost": 3, + "depth": 1, + "stack": [ + "0x140", + "0x140" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6339,19 +6307,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 180, + "op": "DUP2", + "gas": 267122, + "gasCost": 3, + "depth": 1, "stack": [ "0x140", "0x140", "0x17" - ] - }, - { - "depth": 1, - "gas": 155443, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6367,20 +6335,20 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 181, + "op": "MSTORE", + "gas": 267119, + "gasCost": 3, + "depth": 1, "stack": [ "0x140", "0x140", "0x17", "0x140" - ] - }, - { - "depth": 1, - "gas": 155440, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6392,22 +6360,22 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000017", + "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 182, - "stack": [ - "0x140", - "0x140" ] }, { - "depth": 1, - "gas": 155437, + "pc": 182, + "op": "PUSH1", + "gas": 267116, "gasCost": 3, + "depth": 1, + "stack": [ + "0x140", + "0x140" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6423,19 +6391,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 184, + "op": "ADD", + "gas": 267113, + "gasCost": 3, + "depth": 1, "stack": [ "0x140", "0x140", "0x20" - ] - }, - { - "depth": 1, - "gas": 155434, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6451,18 +6419,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH32", - "pc": 185, - "stack": [ - "0x140", - "0x160" ] }, { - "depth": 1, - "gas": 155431, + "pc": 185, + "op": "PUSH32", + "gas": 267110, "gasCost": 3, + "depth": 1, + "stack": [ + "0x140", + "0x160" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6478,19 +6446,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 218, + "op": "DUP2", + "gas": 267107, + "gasCost": 3, + "depth": 1, "stack": [ "0x140", "0x160", "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000" - ] - }, - { - "depth": 1, - "gas": 155428, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6506,20 +6474,20 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 219, + "op": "MSTORE", + "gas": 267104, + "gasCost": 3, + "depth": 1, "stack": [ "0x140", "0x160", "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "0x160" - ] - }, - { - "depth": 1, - "gas": 155425, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6532,21 +6500,21 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", - "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 220, - "stack": [ - "0x140", - "0x160" ] }, { + "pc": 220, + "op": "POP", + "gas": 267101, + "gasCost": 2, "depth": 1, - "gas": 155423, - "gasCost": 3, + "stack": [ + "0x140", + "0x160" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6562,17 +6530,17 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 221, - "stack": [ - "0x140" ] }, { - "depth": 1, - "gas": 155420, + "pc": 221, + "op": "PUSH1", + "gas": 267099, "gasCost": 3, + "depth": 1, + "stack": [ + "0x140" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6588,18 +6556,18 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 223, - "stack": [ - "0x140", - "0x1" ] }, { - "depth": 1, - "gas": 155417, + "pc": 223, + "op": "SWAP1", + "gas": 267096, "gasCost": 3, + "depth": 1, + "stack": [ + "0x140", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6615,18 +6583,18 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 224, - "stack": [ - "0x1", - "0x140" ] }, { - "depth": 1, - "gas": 155414, + "pc": 224, + "op": "DUP2", + "gas": 267093, "gasCost": 3, + "depth": 1, + "stack": [ + "0x1", + "0x140" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6642,19 +6610,19 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 225, + "op": "PUSH2", + "gas": 267090, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x140", "0x1" - ] - }, - { - "depth": 1, - "gas": 155411, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6670,20 +6638,20 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 228, + "op": "SWAP2", + "gas": 267087, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x140", "0x1", "0xea" - ] - }, - { - "depth": 1, - "gas": 155408, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6699,20 +6667,20 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 229, + "op": "SWAP1", + "gas": 267084, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x1", "0x140" - ] - }, - { - "depth": 1, - "gas": 155405, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6728,20 +6696,20 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 230, + "op": "PUSH2", + "gas": 267081, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1" - ] - }, - { - "depth": 1, - "gas": 155402, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6757,21 +6725,21 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", + ] + }, + { "pc": 233, + "op": "JUMP", + "gas": 267078, + "gasCost": 8, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", - "0x1be" - ] - }, - { - "depth": 1, - "gas": 155394, - "gasCost": 1, + "0x1ef" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6787,20 +6755,20 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 495, "op": "JUMPDEST", - "pc": 446, + "gas": 267070, + "gasCost": 1, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1" - ] - }, - { - "depth": 1, - "gas": 155393, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6816,20 +6784,20 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 496, "op": "DUP2", - "pc": 447, + "gas": 267069, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1" - ] - }, - { - "depth": 1, - "gas": 155390, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6845,21 +6813,21 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 497, "op": "MLOAD", - "pc": 448, + "gas": 267066, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x140" - ] - }, - { - "depth": 1, - "gas": 155387, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6875,21 +6843,21 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 498, "op": "PUSH1", - "pc": 449, + "gas": 267063, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17" - ] - }, - { - "depth": 1, - "gas": 155384, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6905,9 +6873,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 500, "op": "PUSH1", - "pc": 451, + "gas": 267060, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -6915,12 +6888,7 @@ "0x1", "0x17", "0x1" - ] - }, - { - "depth": 1, - "gas": 155381, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6936,9 +6904,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 502, "op": "PUSH1", - "pc": 453, + "gas": 267057, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -6947,12 +6920,7 @@ "0x17", "0x1", "0x1" - ] - }, - { - "depth": 1, - "gas": 155378, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6968,9 +6936,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 504, "op": "SHL", - "pc": 455, + "gas": 267054, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -6980,12 +6953,7 @@ "0x1", "0x1", "0x40" - ] - }, - { - "depth": 1, - "gas": 155375, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7001,9 +6969,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 505, "op": "SUB", - "pc": 456, + "gas": 267051, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -7012,12 +6985,7 @@ "0x17", "0x1", "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 155372, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7033,9 +7001,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 506, "op": "DUP2", - "pc": 457, + "gas": 267048, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -7043,12 +7016,7 @@ "0x1", "0x17", "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 155369, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7064,9 +7032,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 507, "op": "GT", - "pc": 458, + "gas": 267045, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -7075,12 +7048,7 @@ "0x17", "0xffffffffffffffff", "0x17" - ] - }, - { - "depth": 1, - "gas": 155366, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7096,9 +7064,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 508, "op": "ISZERO", - "pc": 459, + "gas": 267042, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -7106,12 +7079,7 @@ "0x1", "0x17", "0x0" - ] - }, - { - "depth": 1, - "gas": 155363, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7127,9 +7095,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 509, "op": "PUSH2", - "pc": 460, + "gas": 267039, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -7137,12 +7110,7 @@ "0x1", "0x17", "0x1" - ] - }, - { - "depth": 1, - "gas": 155360, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7158,9 +7126,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 512, "op": "JUMPI", - "pc": 463, + "gas": 267036, + "gasCost": 10, + "depth": 1, "stack": [ "0x1", "0xea", @@ -7168,13 +7141,8 @@ "0x1", "0x17", "0x1", - "0x1d7" - ] - }, - { - "depth": 1, - "gas": 155350, - "gasCost": 1, + "0x208" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7190,21 +7158,21 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 520, "op": "JUMPDEST", - "pc": 471, + "gas": 267026, + "gasCost": 1, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17" - ] - }, - { - "depth": 1, - "gas": 155349, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7220,21 +7188,21 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 521, "op": "PUSH2", - "pc": 472, + "gas": 267025, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17" - ] - }, - { - "depth": 1, - "gas": 155346, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7250,22 +7218,22 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 524, "op": "DUP2", - "pc": 475, + "gas": 267022, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb" - ] - }, - { - "depth": 1, - "gas": 155343, - "gasCost": 3, + "0x21c" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7281,23 +7249,23 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 525, "op": "PUSH2", - "pc": 476, + "gas": 267019, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17" - ] - }, - { - "depth": 1, - "gas": 155340, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7313,24 +7281,24 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 528, "op": "DUP5", - "pc": 479, + "gas": 267016, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5" - ] - }, - { - "depth": 1, - "gas": 155337, - "gasCost": 2100, + "0x216" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7346,25 +7314,25 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 529, "op": "SLOAD", - "pc": 480, + "gas": 267013, + "gasCost": 2100, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x1" - ] - }, - { - "depth": 1, - "gas": 153237, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7381,24 +7349,29 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000001": "0000000000000000000000000000000000000000000000000000000000000000", + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005" + } + }, + { + "pc": 530, "op": "PUSH2", - "pc": 481, + "gas": 264913, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0" - ] - }, - { - "depth": 1, - "gas": 153234, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7414,26 +7387,26 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 533, "op": "JUMP", - "pc": 484, + "gas": 264910, + "gasCost": 8, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", - "0x135" - ] - }, - { - "depth": 1, - "gas": 153226, - "gasCost": 1, + "0x166" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7449,25 +7422,25 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 358, "op": "JUMPDEST", - "pc": 309, + "gas": 264902, + "gasCost": 1, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0" - ] - }, - { - "depth": 1, - "gas": 153225, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7483,25 +7456,25 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 359, "op": "PUSH1", - "pc": 310, + "gas": 264901, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0" - ] - }, - { - "depth": 1, - "gas": 153222, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7517,26 +7490,26 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 361, "op": "DUP2", - "pc": 312, + "gas": 264898, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 153219, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7552,27 +7525,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 362, "op": "DUP2", - "pc": 313, + "gas": 264895, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 153216, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7588,28 +7561,28 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 363, "op": "SHR", - "pc": 314, + "gas": 264892, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x1", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 153213, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7625,27 +7598,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 364, "op": "SWAP1", - "pc": 315, + "gas": 264889, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 153210, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7661,27 +7634,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 365, "op": "DUP3", - "pc": 316, + "gas": 264886, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 153207, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7697,28 +7670,28 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 366, "op": "AND", - "pc": 317, + "gas": 264883, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 153204, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7734,27 +7707,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 367, "op": "DUP1", - "pc": 318, + "gas": 264880, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153201, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7770,28 +7743,28 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 368, "op": "PUSH2", - "pc": 319, + "gas": 264877, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153198, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7807,29 +7780,29 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 371, "op": "JUMPI", - "pc": 322, + "gas": 264874, + "gasCost": 10, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0x0", - "0x149" - ] - }, - { - "depth": 1, - "gas": 153188, - "gasCost": 3, + "0x17a" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7845,27 +7818,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 372, "op": "PUSH1", - "pc": 323, + "gas": 264864, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153185, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7881,28 +7854,28 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 374, "op": "DUP3", - "pc": 325, + "gas": 264861, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0x7f" - ] - }, - { - "depth": 1, - "gas": 153182, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7918,29 +7891,29 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 375, "op": "AND", - "pc": 326, + "gas": 264858, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0x7f", "0x0" - ] - }, - { - "depth": 1, - "gas": 153179, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7956,28 +7929,28 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 376, "op": "SWAP2", - "pc": 327, + "gas": 264855, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153176, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7993,28 +7966,28 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 377, "op": "POP", - "pc": 328, + "gas": 264852, + "gasCost": 2, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153174, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8030,27 +8003,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 378, "op": "JUMPDEST", - "pc": 329, + "gas": 264850, + "gasCost": 1, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153173, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8066,27 +8039,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 379, "op": "PUSH1", - "pc": 330, + "gas": 264849, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153170, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8102,28 +8075,28 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 381, "op": "DUP3", - "pc": 332, + "gas": 264846, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0x20" - ] - }, - { - "depth": 1, - "gas": 153167, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8139,29 +8112,29 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 382, "op": "LT", - "pc": 333, + "gas": 264843, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 153164, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8177,28 +8150,28 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 383, "op": "DUP2", - "pc": 334, + "gas": 264840, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 153161, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8214,29 +8187,29 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 384, "op": "SUB", - "pc": 335, + "gas": 264837, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 153158, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8252,28 +8225,28 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 385, "op": "PUSH2", - "pc": 336, + "gas": 264834, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 153155, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8289,29 +8262,29 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 388, "op": "JUMPI", - "pc": 339, + "gas": 264831, + "gasCost": 10, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x169" - ] - }, - { - "depth": 1, - "gas": 153145, - "gasCost": 1, + "0x19a" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8327,27 +8300,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 410, "op": "JUMPDEST", - "pc": 361, + "gas": 264821, + "gasCost": 1, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153144, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8363,27 +8336,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 411, "op": "POP", - "pc": 362, + "gas": 264820, + "gasCost": 2, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153142, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8399,26 +8372,26 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 412, "op": "SWAP2", - "pc": 363, + "gas": 264818, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", - "0x1e5", + "0x216", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153139, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8434,26 +8407,26 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 413, "op": "SWAP1", - "pc": 364, + "gas": 264815, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x0", - "0x1e5" - ] - }, - { - "depth": 1, - "gas": 153136, - "gasCost": 2, + "0x216" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8469,26 +8442,26 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 414, "op": "POP", - "pc": 365, + "gas": 264812, + "gasCost": 2, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", - "0x1e5", + "0x216", "0x0" - ] - }, - { - "depth": 1, - "gas": 153134, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8504,25 +8477,25 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 415, "op": "JUMP", - "pc": 366, + "gas": 264810, + "gasCost": 8, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", - "0x1e5" - ] - }, - { - "depth": 1, - "gas": 153126, - "gasCost": 1, + "0x216" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8538,24 +8511,24 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 534, "op": "JUMPDEST", - "pc": 485, + "gas": 264802, + "gasCost": 1, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0" - ] - }, - { - "depth": 1, - "gas": 153125, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8571,24 +8544,24 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 535, "op": "DUP5", - "pc": 486, + "gas": 264801, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0" - ] - }, - { - "depth": 1, - "gas": 153122, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8604,25 +8577,25 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 536, "op": "PUSH2", - "pc": 487, + "gas": 264798, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 153119, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8638,26 +8611,26 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 539, "op": "JUMP", - "pc": 490, + "gas": 264795, + "gasCost": 8, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1", - "0x16f" - ] - }, - { - "depth": 1, - "gas": 153111, - "gasCost": 1, + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8673,25 +8646,25 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 416, "op": "JUMPDEST", - "pc": 367, + "gas": 264787, + "gasCost": 1, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 153110, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8707,25 +8680,25 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 417, "op": "PUSH1", - "pc": 368, + "gas": 264786, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 153107, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8741,26 +8714,26 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 419, "op": "DUP3", - "pc": 370, + "gas": 264783, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1", "0x1f" - ] - }, - { - "depth": 1, - "gas": 153104, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8776,27 +8749,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 420, "op": "GT", - "pc": 371, + "gas": 264780, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1", "0x1f", "0x0" - ] - }, - { - "depth": 1, - "gas": 153101, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8812,26 +8785,26 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 421, "op": "ISZERO", - "pc": 372, + "gas": 264777, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 153098, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8847,26 +8820,26 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 422, "op": "PUSH2", - "pc": 373, + "gas": 264774, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1", "0x1" - ] - }, - { - "depth": 1, - "gas": 153095, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8882,27 +8855,27 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 425, "op": "JUMPI", - "pc": 376, + "gas": 264771, + "gasCost": 10, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1", "0x1", - "0x1b9" - ] - }, - { - "depth": 1, - "gas": 153085, - "gasCost": 1, + "0x1ea" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8918,25 +8891,25 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 490, "op": "JUMPDEST", - "pc": 441, + "gas": 264761, + "gasCost": 1, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 153084, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8952,25 +8925,25 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 491, "op": "POP", - "pc": 442, + "gas": 264760, + "gasCost": 2, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 153082, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8986,24 +8959,24 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 492, "op": "POP", - "pc": 443, + "gas": 264758, + "gasCost": 2, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17", "0x0" - ] - }, - { - "depth": 1, - "gas": 153080, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9019,23 +8992,23 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 493, "op": "POP", - "pc": 444, + "gas": 264756, + "gasCost": 2, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb", + "0x21c", "0x17" - ] - }, - { - "depth": 1, - "gas": 153078, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9051,22 +9024,22 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 494, "op": "JUMP", - "pc": 445, + "gas": 264754, + "gasCost": 8, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17", - "0x1eb" - ] - }, - { - "depth": 1, - "gas": 153070, - "gasCost": 1, + "0x21c" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9082,21 +9055,21 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 540, "op": "JUMPDEST", - "pc": 491, + "gas": 264746, + "gasCost": 1, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17" - ] - }, - { - "depth": 1, - "gas": 153069, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9112,21 +9085,21 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 541, "op": "PUSH1", - "pc": 492, + "gas": 264745, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", "0x140", "0x1", "0x17" - ] - }, - { - "depth": 1, - "gas": 153066, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9142,9 +9115,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 543, "op": "DUP1", - "pc": 494, + "gas": 264742, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9152,12 +9130,7 @@ "0x1", "0x17", "0x20" - ] - }, - { - "depth": 1, - "gas": 153063, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9173,9 +9146,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 544, "op": "PUSH1", - "pc": 495, + "gas": 264739, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9184,12 +9162,7 @@ "0x17", "0x20", "0x20" - ] - }, - { - "depth": 1, - "gas": 153060, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9205,9 +9178,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 546, "op": "DUP4", - "pc": 497, + "gas": 264736, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9217,12 +9195,7 @@ "0x20", "0x20", "0x1f" - ] - }, - { - "depth": 1, - "gas": 153057, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9238,9 +9211,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 547, "op": "GT", - "pc": 498, + "gas": 264733, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9251,12 +9229,7 @@ "0x20", "0x1f", "0x17" - ] - }, - { - "depth": 1, - "gas": 153054, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9272,9 +9245,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 548, "op": "PUSH1", - "pc": 499, + "gas": 264730, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9284,12 +9262,7 @@ "0x20", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 153051, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9305,9 +9278,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 550, "op": "DUP2", - "pc": 501, + "gas": 264727, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9318,12 +9296,7 @@ "0x20", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 153048, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9339,9 +9312,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 551, "op": "EQ", - "pc": 502, + "gas": 264724, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9353,12 +9331,7 @@ "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 153045, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9374,9 +9347,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 552, "op": "PUSH2", - "pc": 503, + "gas": 264721, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9387,12 +9365,7 @@ "0x20", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153042, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9408,9 +9381,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 555, "op": "JUMPI", - "pc": 506, + "gas": 264718, + "gasCost": 10, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9421,13 +9399,8 @@ "0x20", "0x0", "0x0", - "0x220" - ] - }, - { - "depth": 1, - "gas": 153032, - "gasCost": 3, + "0x251" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9443,9 +9416,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 556, "op": "PUSH1", - "pc": 507, + "gas": 264708, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9455,12 +9433,7 @@ "0x20", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 153029, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9476,9 +9449,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 558, "op": "DUP5", - "pc": 509, + "gas": 264705, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9489,12 +9467,7 @@ "0x20", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153026, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9510,9 +9483,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 559, "op": "ISZERO", - "pc": 510, + "gas": 264702, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9524,12 +9502,7 @@ "0x0", "0x0", "0x17" - ] - }, - { - "depth": 1, - "gas": 153023, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9545,9 +9518,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 560, "op": "PUSH2", - "pc": 511, + "gas": 264699, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9559,12 +9537,7 @@ "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153020, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9580,9 +9553,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 563, "op": "JUMPI", - "pc": 514, + "gas": 264696, + "gasCost": 10, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9594,13 +9572,8 @@ "0x0", "0x0", "0x0", - "0x208" - ] - }, - { - "depth": 1, - "gas": 153010, - "gasCost": 2, + "0x239" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9616,9 +9589,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 564, "op": "POP", - "pc": 515, + "gas": 264686, + "gasCost": 2, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9629,12 +9607,7 @@ "0x20", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 153008, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9650,9 +9623,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 565, "op": "DUP6", - "pc": 516, + "gas": 264684, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9662,12 +9640,7 @@ "0x20", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 153005, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9683,9 +9656,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 566, "op": "DUP4", - "pc": 517, + "gas": 264681, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9696,12 +9674,7 @@ "0x20", "0x0", "0x140" - ] - }, - { - "depth": 1, - "gas": 153002, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9717,9 +9690,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 567, "op": "ADD", - "pc": 518, + "gas": 264678, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9731,12 +9709,7 @@ "0x0", "0x140", "0x20" - ] - }, - { - "depth": 1, - "gas": 152999, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9752,9 +9725,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 568, "op": "MLOAD", - "pc": 519, + "gas": 264675, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9765,12 +9743,7 @@ "0x20", "0x0", "0x160" - ] - }, - { - "depth": 1, - "gas": 152996, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9786,9 +9759,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 569, "op": "JUMPDEST", - "pc": 520, + "gas": 264672, + "gasCost": 1, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9799,12 +9777,7 @@ "0x20", "0x0", "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000" - ] - }, - { - "depth": 1, - "gas": 152995, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9820,9 +9793,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 570, "op": "PUSH1", - "pc": 521, + "gas": 264671, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9833,12 +9811,7 @@ "0x20", "0x0", "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000" - ] - }, - { - "depth": 1, - "gas": 152992, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9854,9 +9827,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 572, "op": "NOT", - "pc": 523, + "gas": 264668, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9868,12 +9846,7 @@ "0x0", "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "0x0" - ] - }, - { - "depth": 1, - "gas": 152989, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9889,9 +9862,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 573, "op": "PUSH1", - "pc": 524, + "gas": 264665, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9903,12 +9881,7 @@ "0x0", "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 152986, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9924,9 +9897,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 575, "op": "DUP7", - "pc": 526, + "gas": 264662, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9939,12 +9917,7 @@ "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "0x3" - ] - }, - { - "depth": 1, - "gas": 152983, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9960,9 +9933,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 576, "op": "SWAP1", - "pc": 527, + "gas": 264659, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -9976,12 +9954,7 @@ "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "0x3", "0x17" - ] - }, - { - "depth": 1, - "gas": 152980, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9997,9 +9970,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 577, "op": "SHL", - "pc": 528, + "gas": 264656, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -10013,12 +9991,7 @@ "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "0x17", "0x3" - ] - }, - { - "depth": 1, - "gas": 152977, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10034,9 +10007,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 578, "op": "SHR", - "pc": 529, + "gas": 264653, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -10049,12 +10027,7 @@ "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "0xb8" - ] - }, - { - "depth": 1, - "gas": 152974, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10070,9 +10043,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 579, "op": "NOT", - "pc": 530, + "gas": 264650, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -10084,12 +10062,7 @@ "0x0", "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "0xffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 152971, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10105,9 +10078,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 580, "op": "AND", - "pc": 531, + "gas": 264647, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -10119,12 +10097,41 @@ "0x0", "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "0xffffffffffffffffffffffffffffffffffffffffffffff000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 152968, + "pc": 581, + "op": "PUSH1", + "gas": 264644, "gasCost": 3, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20", + "0x20", + "0x0", + "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10140,9 +10147,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 532, + ] + }, + { + "pc": 583, + "op": "DUP6", + "gas": 264641, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -10152,13 +10164,45 @@ "0x20", "0x20", "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000" + "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 152965, + "pc": 584, + "op": "SWAP1", + "gas": 264638, "gasCost": 3, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20", + "0x20", + "0x0", + "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0x1", + "0x17" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10174,9 +10218,14 @@ "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 534, + ] + }, + { + "pc": 585, + "op": "SHL", + "gas": 264635, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0xea", @@ -10187,17 +10236,1834 @@ "0x20", "0x0", "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0x17", "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 586, + "op": "OR", + "gas": 264632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20", + "0x20", + "0x0", + "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0x2e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" ] }, { + "pc": 587, + "op": "DUP6", + "gas": 264629, + "gasCost": 3, "depth": 1, - "gas": 152962, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20", + "0x20", + "0x0", + "0x4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 588, + "op": "SSTORE", + "gas": 264626, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20", + "0x20", + "0x0", + "0x4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000001": "4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e", + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005" + } + }, + { + "pc": 589, + "op": "PUSH2", + "gas": 244626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20", + "0x20", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 592, + "op": "JUMP", + "gas": 244623, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20", + "0x20", + "0x0", + "0x1e6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 486, + "op": "JUMPDEST", + "gas": 244615, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20", + "0x20", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 487, + "op": "POP", + "gas": 244614, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20", + "0x20", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 488, + "op": "POP", + "gas": 244612, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 489, + "op": "POP", + "gas": 244610, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 490, + "op": "JUMPDEST", + "gas": 244608, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 491, + "op": "POP", + "gas": 244607, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1", + "0x17" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 492, + "op": "POP", + "gas": 244605, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 493, + "op": "POP", + "gas": 244603, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x1", + "0xea", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 494, + "op": "JUMP", + "gas": 244601, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x1", + "0xea" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 234, + "op": "JUMPDEST", + "gas": 244593, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 235, + "op": "POP", + "gas": 244592, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 236, + "op": "PUSH1", + "gas": 244590, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 238, + "op": "PUSH1", + "gas": 244587, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 240, + "op": "PUSH1", + "gas": 244584, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 242, + "op": "MLOAD", + "gas": 244581, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 243, + "op": "DUP1", + "gas": 244578, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 244, + "op": "PUSH1", + "gas": 244575, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 246, + "op": "ADD", + "gas": 244572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x180", + "0x20" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 247, + "op": "PUSH1", + "gas": 244569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 249, + "op": "MSTORE", + "gas": 244566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x1a0", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000180", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 250, + "op": "DUP1", + "gas": 244563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 251, + "op": "PUSH1", + "gas": 244560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 253, + "op": "DUP2", + "gas": 244557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x180", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 254, + "op": "MSTORE", + "gas": 244554, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x180", + "0x0", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 255, + "op": "POP", + "gas": 244551, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 256, + "op": "PUSH1", + "gas": 244549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 258, + "op": "MLOAD", + "gas": 244546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 259, + "op": "PUSH2", + "gas": 244543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 262, + "op": "SWAP2", + "gas": 244540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x180", + "0x1a0", + "0x10c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 263, + "op": "SWAP1", + "gas": 244537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x1a0", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 264, + "op": "PUSH2", + "gas": 244534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 267, + "op": "JUMP", + "gas": 244531, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x121" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 289, + "op": "JUMPDEST", + "gas": 244523, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 290, + "op": "PUSH1", + "gas": 244522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 292, + "op": "DUP3", + "gas": 244519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 293, + "op": "MLOAD", + "gas": 244516, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x180" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 294, + "op": "PUSH1", + "gas": 244513, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 296, + "op": "JUMPDEST", + "gas": 244510, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 297, + "op": "DUP2", + "gas": 244509, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 298, + "op": "DUP2", + "gas": 244506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 299, + "op": "LT", + "gas": 244503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 300, + "op": "ISZERO", + "gas": 244500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 301, + "op": "PUSH2", + "gas": 244497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x0", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 304, + "op": "JUMPI", + "gas": 244494, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x0", + "0x1", + "0x142" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 322, + "op": "JUMPDEST", + "gas": 244484, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 323, + "op": "POP", + "gas": 244483, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 324, + "op": "PUSH1", + "gas": 244481, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 326, + "op": "SWAP3", + "gas": 244478, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 327, + "op": "ADD", + "gas": 244475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x0", + "0x0", + "0x0", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 328, + "op": "SWAP2", + "gas": 244472, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x0", + "0x0", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 329, + "op": "DUP3", + "gas": 244469, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 330, + "op": "MSTORE", + "gas": 244466, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0", + "0x0", + "0x1a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 331, + "op": "POP", + "gas": 244463, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0", + "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 332, + "op": "SWAP2", + "gas": 244461, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x10c", + "0x180", + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10207,33 +12073,27 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 535, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0x1", - "0x17" ] }, { - "depth": 1, - "gas": 152959, + "pc": 333, + "op": "SWAP1", + "gas": 244458, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x1a0", + "0x180", + "0x10c" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10243,33 +12103,27 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 536, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0x17", - "0x1" ] }, { + "pc": 334, + "op": "POP", + "gas": 244455, + "gasCost": 2, "depth": 1, - "gas": 152956, - "gasCost": 3, + "stack": [ + "0x2a", + "0x0", + "0x1a0", + "0x10c", + "0x180" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10279,32 +12133,26 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "OR", - "pc": 537, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "0x2e" ] }, { + "pc": 335, + "op": "JUMP", + "gas": 244453, + "gasCost": 8, "depth": 1, - "gas": 152953, - "gasCost": 3, + "stack": [ + "0x2a", + "0x0", + "0x1a0", + "0x10c" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10314,31 +12162,25 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 538, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e" ] }, { + "pc": 268, + "op": "JUMPDEST", + "gas": 244445, + "gasCost": 1, "depth": 1, - "gas": 152950, - "gasCost": 20000, + "stack": [ + "0x2a", + "0x0", + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10348,32 +12190,25 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 539, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e", - "0x1" ] }, { - "depth": 1, - "gas": 132950, + "pc": 269, + "op": "SWAP1", + "gas": 244444, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0", + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10383,30 +12218,25 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 540, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0" ] }, { + "pc": 270, + "op": "DUP2", + "gas": 244441, + "gasCost": 3, "depth": 1, - "gas": 132947, - "gasCost": 8, + "stack": [ + "0x2a", + "0x1a0", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10416,31 +12246,26 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 543, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0", - "0x1b5" ] }, { + "pc": 271, + "op": "MSTORE", + "gas": 244438, + "gasCost": 3, "depth": 1, - "gas": 132939, - "gasCost": 1, + "stack": [ + "0x2a", + "0x1a0", + "0x0", + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10450,30 +12275,24 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 437, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0" ] }, { + "pc": 272, + "op": "PUSH1", + "gas": 244435, + "gasCost": 3, "depth": 1, - "gas": 132938, - "gasCost": 2, + "stack": [ + "0x2a", + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10483,30 +12302,25 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 438, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20", - "0x0" ] }, { + "pc": 274, + "op": "MLOAD", + "gas": 244432, + "gasCost": 3, "depth": 1, - "gas": 132936, - "gasCost": 2, + "stack": [ + "0x2a", + "0x1a0", + "0x40" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10516,29 +12330,25 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 439, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20", - "0x20" ] }, { + "pc": 275, + "op": "SWAP1", + "gas": 244429, + "gasCost": 3, "depth": 1, - "gas": 132934, - "gasCost": 2, + "stack": [ + "0x2a", + "0x1a0", + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10548,28 +12358,25 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 440, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17", - "0x20" ] }, { + "pc": 276, + "op": "DUP2", + "gas": 244426, + "gasCost": 3, "depth": 1, - "gas": 132932, - "gasCost": 1, + "stack": [ + "0x2a", + "0x1a0", + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10579,27 +12386,26 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 441, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17" ] }, { + "pc": 277, + "op": "SWAP1", + "gas": 244423, + "gasCost": 3, "depth": 1, - "gas": 132931, - "gasCost": 2, + "stack": [ + "0x2a", + "0x1a0", + "0x1a0", + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10609,27 +12415,26 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 442, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1", - "0x17" ] }, { + "pc": 278, + "op": "SUB", + "gas": 244420, + "gasCost": 3, "depth": 1, - "gas": 132929, - "gasCost": 2, + "stack": [ + "0x2a", + "0x1a0", + "0x1a0", + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10639,26 +12444,25 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 443, - "stack": [ - "0x1", - "0xea", - "0x140", - "0x1" ] }, { + "pc": 279, + "op": "PUSH1", + "gas": 244417, + "gasCost": 3, "depth": 1, - "gas": 132927, - "gasCost": 2, + "stack": [ + "0x2a", + "0x1a0", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10668,25 +12472,26 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 444, - "stack": [ - "0x1", - "0xea", - "0x140" ] }, { + "pc": 281, + "op": "ADD", + "gas": 244414, + "gasCost": 3, "depth": 1, - "gas": 132925, - "gasCost": 8, + "stack": [ + "0x2a", + "0x1a0", + "0x0", + "0x20" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10696,24 +12501,25 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 445, - "stack": [ - "0x1", - "0xea" ] }, { + "pc": 282, + "op": "SWAP1", + "gas": 244411, + "gasCost": 3, "depth": 1, - "gas": 132917, - "gasCost": 1, + "stack": [ + "0x2a", + "0x1a0", + "0x20" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10723,23 +12529,25 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 234, - "stack": [ - "0x1" ] }, { + "pc": 283, + "op": "KECCAK256", + "gas": 244408, + "gasCost": 36, "depth": 1, - "gas": 132916, - "gasCost": 2, + "stack": [ + "0x2a", + "0x20", + "0x1a0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10749,23 +12557,24 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 235, - "stack": [ - "0x1" ] }, { + "pc": 284, + "op": "SSTORE", + "gas": 244372, + "gasCost": 22100, "depth": 1, - "gas": 132914, - "gasCost": 3, + "stack": [ + "0x2a", + "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10775,21 +12584,27 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "op": "PUSH2", - "pc": 236, - "stack": [] + "storage": { + "0000000000000000000000000000000000000000000000000000000000000001": "4a75737420736f6d65206e6f726d616c2062797465732e00000000000000002e", + "290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563": "000000000000000000000000000000000000000000000000000000000000002a", + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005" + } }, { + "pc": 285, + "op": "PUSH2", + "gas": 222272, + "gasCost": 3, "depth": 1, - "gas": 132911, - "gasCost": 8, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10799,23 +12614,23 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 239, - "stack": [ - "0x27d" ] }, { + "pc": 288, + "op": "JUMP", + "gas": 222269, + "gasCost": 8, "depth": 1, - "gas": 132903, - "gasCost": 1, + "stack": [ + "0x2ae" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10825,21 +12640,21 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 637, - "stack": [] + ] }, { + "pc": 686, + "op": "JUMPDEST", + "gas": 222261, + "gasCost": 1, "depth": 1, - "gas": 132902, - "gasCost": 3, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10849,21 +12664,21 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 638, - "stack": [] + ] }, { - "depth": 1, - "gas": 132899, + "pc": 687, + "op": "PUSH2", + "gas": 222260, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10873,23 +12688,23 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 641, - "stack": [ - "0x298" ] }, { - "depth": 1, - "gas": 132896, + "pc": 690, + "op": "DUP1", + "gas": 222257, "gasCost": 3, + "depth": 1, + "stack": [ + "0x298" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10899,24 +12714,24 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 642, - "stack": [ - "0x298", - "0x298" ] }, { - "depth": 1, - "gas": 132893, + "pc": 691, + "op": "PUSH2", + "gas": 222254, "gasCost": 3, + "depth": 1, + "stack": [ + "0x298", + "0x298" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10926,25 +12741,25 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 645, - "stack": [ - "0x298", - "0x298", - "0x28c" ] }, { + "pc": 694, + "op": "PUSH1", + "gas": 222251, + "gasCost": 3, "depth": 1, - "gas": 132890, - "gasCost": 87, + "stack": [ + "0x298", + "0x298", + "0x2bd" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000180", + "00000000000000000000000000000000000000000000000000000000000001a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f207468697320697320612074657374000000000000000000000000", @@ -10954,29 +12769,48 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000017", "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 696, "op": "CODECOPY", - "pc": 647, + "gas": 222248, + "gasCost": 87, + "depth": 1, "stack": [ "0x298", "0x298", - "0x28c", + "0x2bd", "0x0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000014", + "48656c6c6f207468697320697320612074657374000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000052", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000017", + "4a75737420736f6d65206e6f726d616c2062797465732e000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 132803, + "pc": 697, + "op": "PUSH1", + "gas": 222161, "gasCost": 3, + "depth": 1, + "stack": [ + "0x298" + ], "memory": [ "608060405234801561001057600080fd5b50600436106100415760003560e01c", "806326121ff01461004657806332e43a111461004e578063e2179b8e14610050", @@ -10999,17 +12833,18 @@ "60051b82019750610276565b60008c81526020902060005b8781101561027057", "815484820152908601908401610257565b83019850505b505096909601969096", "5250909594505050505056fea164736f6c6343000815000a0000000000000000" - ], - "op": "PUSH1", - "pc": 648, - "stack": [ - "0x298" ] }, { - "depth": 1, - "gas": 132800, + "pc": 699, + "op": "RETURN", + "gas": 222158, "gasCost": 0, + "depth": 1, + "stack": [ + "0x298", + "0x0" + ], "memory": [ "608060405234801561001057600080fd5b50600436106100415760003560e01c", "806326121ff01461004657806332e43a111461004e578063e2179b8e14610050", @@ -11032,16 +12867,10 @@ "60051b82019750610276565b60008c81526020902060005b8781101561027057", "815484820152908601908401610257565b83019850505b505096909601969096", "5250909594505050505056fea164736f6c6343000815000a0000000000000000" - ], - "op": "RETURN", - "pc": 650, - "stack": [ - "0x298", - "0x0" ] } ] }, "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", - "tx_id": "0xa0741ac64aba2c1bd01987ef6b05b59d4d24f782eaa8f1df6ecfc78a6b74fca2" + "tx_id": "0xb529c019e33d97bf7248ef615c1e275b483923884e8005ffc7b2d7c35a4a6584" } \ No newline at end of file diff --git a/tests/data/trace_StringMapping.json b/tests/data/trace_StringMapping.json index a3172ee..9bb85ce 100644 --- a/tests/data/trace_StringMapping.json +++ b/tests/data/trace_StringMapping.json @@ -1,298 +1,284 @@ { "trace": { "failed": false, - "gas": "0x5f1cb", - "returnValue": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806326121ff01461004657806332e43a111461004e578063e2179b8e14610050575b600080fd5b61004e610058565b005b61004e6100d5565b6101c86000604051610076906561626331323360d01b815260060190565b908152602001604051809103902081905550604051806040016040528060018152602001606360f81b81525060016040516100b890603160f91b815260010190565b908152602001604051809103902090816100d2919061022a565b50565b6102a660006040516100f3906561626331323360d01b815260060190565b908152604051908190036020018120919091557312195b1b1bc81d1a1a5cc81a5cc818481d195cdd60621b815260069060009060140190815260405190819003602001812091909155604160f81b8152606490600090600101908152604051908190036020018120919091556a32b9b1b0b832ba3434b99160a91b8152606490600090600b0190815260405190819003602001902055565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806101b557607f821691505b6020821081036101d557634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561022557600081815260208120601f850160051c810160208610156102025750805b601f850160051c820191505b818110156102215782815560010161020e565b5050505b505050565b815167ffffffffffffffff8111156102445761024461018b565b6102588161025284546101a1565b846101db565b602080601f83116001811461028d57600084156102755750858301515b600019600386901b1c1916600185901b178555610221565b600085815260208120601f198616915b828110156102bc5788860151825594840194600190910190840161029d565b50858210156102da5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fea164736f6c6343000815000a", + "gas": 412158, + "returnValue": "608060405234801561001057600080fd5b50600436106100415760003560e01c806326121ff01461004657806332e43a111461004e578063e2179b8e14610050575b600080fd5b61004e610058565b005b61004e6100d5565b6101c86000604051610076906561626331323360d01b815260060190565b908152602001604051809103902081905550604051806040016040528060018152602001606360f81b81525060016040516100b890603160f91b815260010190565b908152602001604051809103902090816100d2919061022a565b50565b6102a660006040516100f3906561626331323360d01b815260060190565b908152604051908190036020018120919091557312195b1b1bc81d1a1a5cc81a5cc818481d195cdd60621b815260069060009060140190815260405190819003602001812091909155604160f81b8152606490600090600101908152604051908190036020018120919091556a32b9b1b0b832ba3434b99160a91b8152606490600090600b0190815260405190819003602001902055565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806101b557607f821691505b6020821081036101d557634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561022557600081815260208120601f850160051c810160208610156102025750805b601f850160051c820191505b818110156102215782815560010161020e565b5050505b505050565b815167ffffffffffffffff8111156102445761024461018b565b6102588161025284546101a1565b846101db565b602080601f83116001811461028d57600084156102755750858301515b600019600386901b1c1916600185901b178555610221565b600085815260208120601f198616915b828110156102bc5788860151825594840194600190910190840161029d565b50858210156102da5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fea164736f6c6343000815000a", "structLogs": [ { - "depth": 1, - "gas": 310429, - "gasCost": 3, - "memory": [], - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 456125, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 310426, - "gasCost": 3, - "memory": [], - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 456122, + "gasCost": 3, + "depth": 1, "stack": [ "0x80" ] }, { - "depth": 1, - "gas": 310423, - "gasCost": 12, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 456119, + "gasCost": 12, + "depth": 1, "stack": [ "0x80", "0x40" ] }, { - "depth": 1, - "gas": 310411, + "pc": 5, + "op": "CALLVALUE", + "gas": 456107, "gasCost": 2, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "CALLVALUE", - "pc": 5, - "stack": [] + ] }, { - "depth": 1, - "gas": 310409, + "pc": 6, + "op": "DUP1", + "gas": 456105, "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP1", - "pc": 6, - "stack": [ - "0x0" ] }, { - "depth": 1, - "gas": 310406, - "gasCost": 3, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "ISZERO", "pc": 7, + "op": "ISZERO", + "gas": 456102, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 310403, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", - "pc": 8, - "stack": [ - "0x0", - "0x1" ] }, { + "pc": 8, + "op": "PUSH2", + "gas": 456099, + "gasCost": 3, "depth": 1, - "gas": 310400, - "gasCost": 10, + "stack": [ + "0x0", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPI", + ] + }, + { "pc": 11, + "op": "JUMPI", + "gas": 456096, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0x1", "0x10" - ] - }, - { - "depth": 1, - "gas": 310390, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "JUMPDEST", - "pc": 16, - "stack": [ - "0x0" ] }, { + "pc": 16, + "op": "JUMPDEST", + "gas": 456086, + "gasCost": 1, "depth": 1, - "gas": 310389, - "gasCost": 2, + "stack": [ + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "POP", - "pc": 17, - "stack": [ - "0x0" ] }, { + "pc": 17, + "op": "POP", + "gas": 456085, + "gasCost": 2, "depth": 1, - "gas": 310387, - "gasCost": 3, + "stack": [ + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 18, - "stack": [] + ] }, { - "depth": 1, - "gas": 310384, + "pc": 18, + "op": "PUSH1", + "gas": 456083, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 20, - "stack": [ - "0x5" ] }, { - "depth": 1, - "gas": 310381, + "pc": 20, + "op": "PUSH1", + "gas": 456080, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH1", - "pc": 22, - "stack": [ - "0x5", - "0x0" ] }, { - "depth": 1, - "gas": 310378, + "pc": 22, + "op": "PUSH1", + "gas": 456077, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "MLOAD", + ] + }, + { "pc": 24, + "op": "MLOAD", + "gas": 456074, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x40" - ] - }, - { - "depth": 1, - "gas": 310375, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH2", + ] + }, + { "pc": 25, + "op": "PUSH2", + "gas": 456071, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80" - ] - }, - { - "depth": 1, - "gas": 310372, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "SWAP1", + ] + }, + { "pc": 28, + "op": "SWAP1", + "gas": 456068, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x80", "0x45" - ] - }, - { - "depth": 1, - "gas": 310369, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "PUSH32", + ] + }, + { "pc": 29, + "op": "PUSH32", + "gas": 456065, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x45", "0x80" - ] - }, - { - "depth": 1, - "gas": 310366, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "op": "DUP2", + ] + }, + { "pc": 62, + "op": "DUP2", + "gas": 456062, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x45", "0x80", "0x48656c6c6f207468697320697320612074657374000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 310363, - "gasCost": 9, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + "0000000000000000000000000000000000000000000000000000000000000080" + ] + }, + { "pc": 63, + "op": "MSTORE", + "gas": 456059, + "gasCost": 9, + "depth": 1, "stack": [ "0x5", "0x0", @@ -300,190 +286,181 @@ "0x80", "0x48656c6c6f207468697320697320612074657374000000000000000000000000", "0x80" - ] - }, - { - "depth": 1, - "gas": 310354, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "PUSH1", + "0000000000000000000000000000000000000000000000000000000000000080" + ] + }, + { "pc": 64, + "op": "PUSH1", + "gas": 456050, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x45", "0x80" - ] - }, - { - "depth": 1, - "gas": 310351, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 66, + "op": "ADD", + "gas": 456047, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x45", "0x80", "0x14" - ] - }, - { - "depth": 1, - "gas": 310348, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 67, + "op": "SWAP1", + "gas": 456044, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x45", "0x94" - ] - }, - { - "depth": 1, - "gas": 310345, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMP", + ] + }, + { "pc": 68, + "op": "JUMP", + "gas": 456041, + "gasCost": 8, + "depth": 1, "stack": [ "0x5", "0x0", "0x94", "0x45" - ] - }, - { - "depth": 1, - "gas": 310337, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "JUMPDEST", + ] + }, + { "pc": 69, + "op": "JUMPDEST", + "gas": 456033, + "gasCost": 1, + "depth": 1, "stack": [ "0x5", "0x0", "0x94" - ] - }, - { - "depth": 1, - "gas": 310336, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 70, + "op": "SWAP1", + "gas": 456032, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x0", "0x94" - ] - }, - { - "depth": 1, - "gas": 310333, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 71, + "op": "DUP2", + "gas": 456029, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x94", "0x0" - ] - }, - { - "depth": 1, - "gas": 310330, - "gasCost": 6, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + "48656c6c6f207468697320697320612074657374000000000000000000000000" + ] + }, + { "pc": 72, + "op": "MSTORE", + "gas": 456026, + "gasCost": 6, + "depth": 1, "stack": [ "0x5", "0x94", "0x0", "0x94" - ] - }, - { - "depth": 1, - "gas": 310324, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f207468697320697320612074657374000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 73, - "stack": [ - "0x5", - "0x94" + "48656c6c6f207468697320697320612074657374000000000000000000000000" ] }, { - "depth": 1, - "gas": 310321, + "pc": 73, + "op": "PUSH1", + "gas": 456020, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5", + "0x94" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -491,19 +468,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 75, + "op": "ADD", + "gas": 456017, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x94", "0x20" - ] - }, - { - "depth": 1, - "gas": 310318, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -511,18 +488,18 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 76, - "stack": [ - "0x5", - "0xb4" ] }, { - "depth": 1, - "gas": 310315, + "pc": 76, + "op": "PUSH1", + "gas": 456014, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5", + "0xb4" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -530,19 +507,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", + ] + }, + { "pc": 78, + "op": "MLOAD", + "gas": 456011, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xb4", "0x40" - ] - }, - { - "depth": 1, - "gas": 310312, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -550,19 +527,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", + ] + }, + { "pc": 79, + "op": "DUP1", + "gas": 456008, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xb4", "0x80" - ] - }, - { - "depth": 1, - "gas": 310309, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -570,20 +547,20 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 80, + "op": "SWAP2", + "gas": 456005, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0xb4", "0x80", "0x80" - ] - }, - { - "depth": 1, - "gas": 310306, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -591,20 +568,20 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", + ] + }, + { "pc": 81, + "op": "SUB", + "gas": 456002, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x80", "0x80", "0xb4" - ] - }, - { - "depth": 1, - "gas": 310303, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -612,19 +589,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 82, + "op": "SWAP1", + "gas": 455999, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x80", "0x34" - ] - }, - { - "depth": 1, - "gas": 310300, - "gasCost": 42, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -632,19 +609,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", + ] + }, + { "pc": 83, + "op": "KECCAK256", + "gas": 455996, + "gasCost": 42, + "depth": 1, "stack": [ "0x5", "0x34", "0x80" - ] - }, - { - "depth": 1, - "gas": 310258, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -652,18 +629,18 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 84, - "stack": [ - "0x5", - "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466" ] }, { - "depth": 1, - "gas": 310255, + "pc": 84, + "op": "DUP2", + "gas": 455954, "gasCost": 3, + "depth": 1, + "stack": [ + "0x5", + "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -671,19 +648,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 85, + "op": "SWAP1", + "gas": 455951, + "gasCost": 3, + "depth": 1, "stack": [ "0x5", "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466", "0x5" - ] - }, - { - "depth": 1, - "gas": 310252, - "gasCost": 22100, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -691,19 +668,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", + ] + }, + { "pc": 86, + "op": "SSTORE", + "gas": 455948, + "gasCost": 22100, + "depth": 1, "stack": [ "0x5", "0x5", "0x5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466" - ] - }, - { - "depth": 1, - "gas": 288152, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -712,16 +689,19 @@ "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "op": "POP", - "pc": 87, - "stack": [ - "0x5" - ] + "storage": { + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005" + } }, { + "pc": 87, + "op": "POP", + "gas": 433848, + "gasCost": 2, "depth": 1, - "gas": 288150, - "gasCost": 3, + "stack": [ + "0x5" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -729,15 +709,15 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 88, - "stack": [] + ] }, { - "depth": 1, - "gas": 288147, + "pc": 88, + "op": "PUSH1", + "gas": 433846, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -745,17 +725,17 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 90, - "stack": [ - "0x2a" ] }, { - "depth": 1, - "gas": 288144, + "pc": 90, + "op": "PUSH1", + "gas": 433843, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -763,18 +743,18 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 92, - "stack": [ - "0x2a", - "0x0" ] }, { - "depth": 1, - "gas": 288141, + "pc": 92, + "op": "PUSH1", + "gas": 433840, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -782,19 +762,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", + ] + }, + { "pc": 94, + "op": "MLOAD", + "gas": 433837, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0x40" - ] - }, - { - "depth": 1, - "gas": 288138, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -802,19 +782,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 95, + "op": "PUSH2", + "gas": 433834, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0x80" - ] - }, - { - "depth": 1, - "gas": 288135, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -822,20 +802,20 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 98, + "op": "SWAP1", + "gas": 433831, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0x80", "0xcc" - ] - }, - { - "depth": 1, - "gas": 288132, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -843,20 +823,20 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH32", + ] + }, + { "pc": 99, + "op": "PUSH32", + "gas": 433828, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xcc", "0x80" - ] - }, - { - "depth": 1, - "gas": 288129, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -864,21 +844,21 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 132, + "op": "DUP2", + "gas": 433825, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xcc", "0x80", "0x4120766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 288126, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -886,9 +866,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 133, + "op": "MSTORE", + "gas": 433822, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -896,33 +881,28 @@ "0x80", "0x4120766572797665727976657279766572797665727976657279766572797665", "0x80" - ] - }, - { - "depth": 1, - "gas": 288123, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", - "4120766572797665727976657279766572797665727976657279766572797665", + "48656c6c6f207468697320697320612074657374000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH32", + ] + }, + { "pc": 134, + "op": "PUSH32", + "gas": 433819, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xcc", "0x80" - ] - }, - { - "depth": 1, - "gas": 288120, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -930,21 +910,21 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", + ] + }, + { "pc": 167, + "op": "PUSH1", + "gas": 433816, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xcc", "0x80", "0x7279766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 288117, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -952,9 +932,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", + ] + }, + { "pc": 169, + "op": "DUP3", + "gas": 433813, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -962,12 +947,7 @@ "0x80", "0x7279766572797665727976657279766572797665727976657279766572797665", "0x20" - ] - }, - { - "depth": 1, - "gas": 288114, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -975,9 +955,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 170, + "op": "ADD", + "gas": 433810, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -986,12 +971,7 @@ "0x7279766572797665727976657279766572797665727976657279766572797665", "0x20", "0x80" - ] - }, - { - "depth": 1, - "gas": 288111, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -999,9 +979,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 171, + "op": "MSTORE", + "gas": 433807, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -1009,33 +994,28 @@ "0x80", "0x7279766572797665727976657279766572797665727976657279766572797665", "0xa0" - ] - }, - { - "depth": 1, - "gas": 288108, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH18", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { "pc": 172, + "op": "PUSH18", + "gas": 433804, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xcc", "0x80" - ] - }, - { - "depth": 1, - "gas": 288105, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1043,21 +1023,21 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH1", + ] + }, + { "pc": 191, + "op": "PUSH1", + "gas": 433801, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xcc", "0x80", "0x727976657279206c6f6e6720737472696e67" - ] - }, - { - "depth": 1, - "gas": 288102, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1065,9 +1045,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "SHL", + ] + }, + { "pc": 193, + "op": "SHL", + "gas": 433798, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -1075,12 +1060,7 @@ "0x80", "0x727976657279206c6f6e6720737472696e67", "0x70" - ] - }, - { - "depth": 1, - "gas": 288099, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1088,21 +1068,21 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "PUSH1", + ] + }, + { "pc": 194, + "op": "PUSH1", + "gas": 433795, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xcc", "0x80", "0x727976657279206c6f6e6720737472696e670000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 288096, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1110,9 +1090,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "DUP3", + ] + }, + { "pc": 196, + "op": "DUP3", + "gas": 433792, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -1120,12 +1105,7 @@ "0x80", "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", "0x40" - ] - }, - { - "depth": 1, - "gas": 288093, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1133,9 +1113,14 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665" - ], - "op": "ADD", + ] + }, + { "pc": 197, + "op": "ADD", + "gas": 433789, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -1144,23 +1129,22 @@ "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", "0x40", "0x80" - ] - }, - { - "depth": 1, - "gas": 288090, - "gasCost": 6, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + "7279766572797665727976657279766572797665727976657279766572797665" + ] + }, + { "pc": 198, + "op": "MSTORE", + "gas": 433786, + "gasCost": 6, + "depth": 1, "stack": [ "0x2a", "0x0", @@ -1168,34 +1152,28 @@ "0x80", "0x727976657279206c6f6e6720737472696e670000000000000000000000000000", "0xc0" - ] - }, - { - "depth": 1, - "gas": 288084, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "PUSH1", + "7279766572797665727976657279766572797665727976657279766572797665" + ] + }, + { "pc": 199, + "op": "PUSH1", + "gas": 433780, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xcc", "0x80" - ] - }, - { - "depth": 1, - "gas": 288081, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1204,21 +1182,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 201, + "op": "ADD", + "gas": 433777, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xcc", "0x80", "0x52" - ] - }, - { - "depth": 1, - "gas": 288078, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1227,20 +1205,20 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 202, + "op": "SWAP1", + "gas": 433774, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xcc", "0xd2" - ] - }, - { - "depth": 1, - "gas": 288075, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1249,20 +1227,20 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMP", + ] + }, + { "pc": 203, + "op": "JUMP", + "gas": 433771, + "gasCost": 8, + "depth": 1, "stack": [ "0x2a", "0x0", "0xd2", "0xcc" - ] - }, - { - "depth": 1, - "gas": 288067, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1271,19 +1249,19 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "JUMPDEST", + ] + }, + { "pc": 204, + "op": "JUMPDEST", + "gas": 433763, + "gasCost": 1, + "depth": 1, "stack": [ "0x2a", "0x0", "0xd2" - ] - }, - { - "depth": 1, - "gas": 288066, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1292,19 +1270,19 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 205, + "op": "SWAP1", + "gas": 433762, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x0", "0xd2" - ] - }, - { - "depth": 1, - "gas": 288063, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1313,19 +1291,19 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 206, + "op": "DUP2", + "gas": 433759, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0xd2", "0x0" - ] - }, - { - "depth": 1, - "gas": 288060, - "gasCost": 6, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1333,22 +1311,21 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + "727976657279206c6f6e6720737472696e670000000000000000000000000000" + ] + }, + { "pc": 207, + "op": "MSTORE", + "gas": 433756, + "gasCost": 6, + "depth": 1, "stack": [ "0x2a", "0xd2", "0x0", "0xd2" - ] - }, - { - "depth": 1, - "gas": 288054, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1356,20 +1333,19 @@ "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e670000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 208, - "stack": [ - "0x2a", - "0xd2" + "727976657279206c6f6e6720737472696e670000000000000000000000000000" ] }, { - "depth": 1, - "gas": 288051, + "pc": 208, + "op": "PUSH1", + "gas": 433750, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0xd2" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1379,19 +1355,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 210, + "op": "ADD", + "gas": 433747, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0xd2", "0x20" - ] - }, - { - "depth": 1, - "gas": 288048, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1401,18 +1377,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 211, - "stack": [ - "0x2a", - "0xf2" ] }, { - "depth": 1, - "gas": 288045, + "pc": 211, + "op": "PUSH1", + "gas": 433744, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0xf2" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1422,19 +1398,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", + ] + }, + { "pc": 213, + "op": "MLOAD", + "gas": 433741, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0xf2", "0x40" - ] - }, - { - "depth": 1, - "gas": 288042, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1444,19 +1420,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", + ] + }, + { "pc": 214, + "op": "DUP1", + "gas": 433738, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0xf2", "0x80" - ] - }, - { - "depth": 1, - "gas": 288039, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1466,20 +1442,20 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 215, + "op": "SWAP2", + "gas": 433735, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0xf2", "0x80", "0x80" - ] - }, - { - "depth": 1, - "gas": 288036, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1489,20 +1465,20 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", + ] + }, + { "pc": 216, + "op": "SUB", + "gas": 433732, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x80", "0x80", "0xf2" - ] - }, - { - "depth": 1, - "gas": 288033, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1512,19 +1488,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 217, + "op": "SWAP1", + "gas": 433729, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x80", "0x72" - ] - }, - { - "depth": 1, - "gas": 288030, - "gasCost": 54, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1534,19 +1510,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", + ] + }, + { "pc": 218, + "op": "KECCAK256", + "gas": 433726, + "gasCost": 54, + "depth": 1, "stack": [ "0x2a", "0x72", "0x80" - ] - }, - { - "depth": 1, - "gas": 287976, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1556,18 +1532,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 219, - "stack": [ - "0x2a", - "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb" ] }, { - "depth": 1, - "gas": 287973, + "pc": 219, + "op": "DUP2", + "gas": 433672, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1577,19 +1553,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 220, + "op": "SWAP1", + "gas": 433669, + "gasCost": 3, + "depth": 1, "stack": [ "0x2a", "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb", "0x2a" - ] - }, - { - "depth": 1, - "gas": 287970, - "gasCost": 22100, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1599,19 +1575,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", + ] + }, + { "pc": 221, + "op": "SSTORE", + "gas": 433666, + "gasCost": 22100, + "depth": 1, "stack": [ "0x2a", "0x2a", "0x4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb" - ] - }, - { - "depth": 1, - "gas": 265870, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1622,16 +1598,20 @@ "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "op": "POP", - "pc": 222, - "stack": [ - "0x2a" - ] + "storage": { + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005" + } }, { + "pc": 222, + "op": "POP", + "gas": 411566, + "gasCost": 2, "depth": 1, - "gas": 265868, - "gasCost": 3, + "stack": [ + "0x2a" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1641,15 +1621,15 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 223, - "stack": [] + ] }, { - "depth": 1, - "gas": 265865, + "pc": 223, + "op": "PUSH1", + "gas": 411564, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1659,17 +1639,17 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 225, - "stack": [ - "0x40" ] }, { - "depth": 1, - "gas": 265862, + "pc": 225, + "op": "MLOAD", + "gas": 411561, "gasCost": 3, + "depth": 1, + "stack": [ + "0x40" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1679,17 +1659,17 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 226, - "stack": [ - "0x80" ] }, { - "depth": 1, - "gas": 265859, + "pc": 226, + "op": "DUP1", + "gas": 411558, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1699,18 +1679,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 227, - "stack": [ - "0x80", - "0x80" ] }, { - "depth": 1, - "gas": 265856, + "pc": 227, + "op": "PUSH1", + "gas": 411555, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x80" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1720,19 +1700,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 229, + "op": "ADD", + "gas": 411552, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x80", "0x40" - ] - }, - { - "depth": 1, - "gas": 265853, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1742,18 +1722,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 230, - "stack": [ - "0x80", - "0xc0" ] }, { - "depth": 1, - "gas": 265850, + "pc": 230, + "op": "PUSH1", + "gas": 411549, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xc0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1763,39 +1743,39 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 232, + "op": "MSTORE", + "gas": 411546, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xc0", "0x40" - ] - }, - { - "depth": 1, - "gas": 265847, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 233, - "stack": [ - "0x80" ] }, { - "depth": 1, - "gas": 265844, + "pc": 233, + "op": "DUP1", + "gas": 411543, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1805,18 +1785,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 234, - "stack": [ - "0x80", - "0x80" ] }, { - "depth": 1, - "gas": 265841, + "pc": 234, + "op": "PUSH1", + "gas": 411540, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x80" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1826,19 +1806,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 236, + "op": "DUP2", + "gas": 411537, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x80", "0xe" - ] - }, - { - "depth": 1, - "gas": 265838, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1848,41 +1828,41 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 237, + "op": "MSTORE", + "gas": 411534, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x80", "0xe", "0x80" - ] - }, - { - "depth": 1, - "gas": 265835, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000e", + "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 238, - "stack": [ - "0x80", - "0x80" ] }, { - "depth": 1, - "gas": 265832, + "pc": 238, + "op": "PUSH1", + "gas": 411531, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x80" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1892,19 +1872,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 240, + "op": "ADD", + "gas": 411528, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x80", "0x20" - ] - }, - { - "depth": 1, - "gas": 265829, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1914,18 +1894,18 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH14", - "pc": 241, - "stack": [ - "0x80", - "0xa0" ] }, { - "depth": 1, - "gas": 265826, + "pc": 241, + "op": "PUSH14", + "gas": 411525, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xa0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1935,19 +1915,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", + ] + }, + { "pc": 256, + "op": "PUSH1", + "gas": 411522, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xa0", "0x612073686f727420737472696e67" - ] - }, - { - "depth": 1, - "gas": 265823, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1957,20 +1937,20 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", + ] + }, + { "pc": 258, + "op": "SHL", + "gas": 411519, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xa0", "0x612073686f727420737472696e67", "0x90" - ] - }, - { - "depth": 1, - "gas": 265820, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1980,19 +1960,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 259, + "op": "DUP2", + "gas": 411516, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xa0", "0x612073686f727420737472696e67000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 265817, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2002,41 +1982,41 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 260, + "op": "MSTORE", + "gas": 411513, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xa0", "0x612073686f727420737472696e67000000000000000000000000000000000000", "0xa0" - ] - }, - { - "depth": 1, - "gas": 265814, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000e", - "612073686f727420737472696e67000000000000000000000000000000000000", + "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 261, - "stack": [ - "0x80", - "0xa0" ] }, { + "pc": 261, + "op": "POP", + "gas": 411510, + "gasCost": 2, "depth": 1, - "gas": 265812, - "gasCost": 3, + "stack": [ + "0x80", + "0xa0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2046,17 +2026,17 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 262, - "stack": [ - "0x80" ] }, { - "depth": 1, - "gas": 265809, + "pc": 262, + "op": "PUSH1", + "gas": 411508, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2066,18 +2046,18 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 264, - "stack": [ - "0x80", - "0x1" ] }, { - "depth": 1, - "gas": 265806, + "pc": 264, + "op": "PUSH1", + "gas": 411505, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2087,19 +2067,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", + ] + }, + { "pc": 266, + "op": "MLOAD", + "gas": 411502, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", "0x40" - ] - }, - { - "depth": 1, - "gas": 265803, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2109,19 +2089,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 267, + "op": "PUSH2", + "gas": 411499, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", "0xc0" - ] - }, - { - "depth": 1, - "gas": 265800, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2131,20 +2111,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 270, + "op": "SWAP1", + "gas": 411496, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", "0xc0", "0x11d" - ] - }, - { - "depth": 1, - "gas": 265797, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2154,20 +2134,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH3", + ] + }, + { "pc": 271, + "op": "PUSH3", + "gas": 411493, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", "0x11d", "0xc0" - ] - }, - { - "depth": 1, - "gas": 265794, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2177,21 +2157,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", + ] + }, + { "pc": 275, + "op": "PUSH1", + "gas": 411490, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", "0x11d", "0xc0", "0x616263" - ] - }, - { - "depth": 1, - "gas": 265791, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2201,9 +2181,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", + ] + }, + { "pc": 277, + "op": "SHL", + "gas": 411487, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", @@ -2211,12 +2196,7 @@ "0xc0", "0x616263", "0xe8" - ] - }, - { - "depth": 1, - "gas": 265788, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2226,21 +2206,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 278, + "op": "DUP2", + "gas": 411484, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", "0x11d", "0xc0", "0x6162630000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 265785, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2250,9 +2230,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 279, + "op": "MSTORE", + "gas": 411481, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", @@ -2260,12 +2245,7 @@ "0xc0", "0x6162630000000000000000000000000000000000000000000000000000000000", "0xc0" - ] - }, - { - "depth": 1, - "gas": 265782, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2273,22 +2253,22 @@ "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000e", "612073686f727420737472696e67000000000000000000000000000000000000", - "6162630000000000000000000000000000000000000000000000000000000000", + "727976657279206c6f6e6720737472696e670000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", + ] + }, + { "pc": 280, + "op": "PUSH1", + "gas": 411478, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", "0x11d", "0xc0" - ] - }, - { - "depth": 1, - "gas": 265779, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2298,21 +2278,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 282, + "op": "ADD", + "gas": 411475, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", "0x11d", "0xc0", "0x3" - ] - }, - { - "depth": 1, - "gas": 265776, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2322,20 +2302,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 283, + "op": "SWAP1", + "gas": 411472, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", "0x11d", "0xc3" - ] - }, - { - "depth": 1, - "gas": 265773, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2345,20 +2325,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", + ] + }, + { "pc": 284, + "op": "JUMP", + "gas": 411469, + "gasCost": 8, + "depth": 1, "stack": [ "0x80", "0x1", "0xc3", "0x11d" - ] - }, - { - "depth": 1, - "gas": 265765, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2368,19 +2348,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", + ] + }, + { "pc": 285, + "op": "JUMPDEST", + "gas": 411461, + "gasCost": 1, + "depth": 1, "stack": [ "0x80", "0x1", "0xc3" - ] - }, - { - "depth": 1, - "gas": 265764, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2390,19 +2370,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 286, + "op": "SWAP1", + "gas": 411460, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0x1", "0xc3" - ] - }, - { - "depth": 1, - "gas": 265761, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2412,19 +2392,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 287, + "op": "DUP2", + "gas": 411457, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xc3", "0x1" - ] - }, - { - "depth": 1, - "gas": 265758, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2434,20 +2414,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 288, + "op": "MSTORE", + "gas": 411454, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xc3", "0x1", "0xc3" - ] - }, - { - "depth": 1, - "gas": 265755, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2456,19 +2436,19 @@ "000000000000000000000000000000000000000000000000000000000000000e", "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", - "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 289, - "stack": [ - "0x80", - "0xc3" + "0000000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 265752, + "pc": 289, + "op": "PUSH1", + "gas": 411451, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xc3" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2478,19 +2458,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 291, + "op": "ADD", + "gas": 411448, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xc3", "0x20" - ] - }, - { - "depth": 1, - "gas": 265749, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2500,18 +2480,18 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 292, - "stack": [ - "0x80", - "0xe3" ] }, { - "depth": 1, - "gas": 265746, + "pc": 292, + "op": "PUSH1", + "gas": 411445, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xe3" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2521,19 +2501,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", + ] + }, + { "pc": 294, + "op": "MLOAD", + "gas": 411442, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xe3", "0x40" - ] - }, - { - "depth": 1, - "gas": 265743, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2543,19 +2523,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", + ] + }, + { "pc": 295, + "op": "DUP1", + "gas": 411439, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xe3", "0xc0" - ] - }, - { - "depth": 1, - "gas": 265740, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2565,20 +2545,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 296, + "op": "SWAP2", + "gas": 411436, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xe3", "0xc0", "0xc0" - ] - }, - { - "depth": 1, - "gas": 265737, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2588,20 +2568,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", + ] + }, + { "pc": 297, + "op": "SUB", + "gas": 411433, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xc0", "0xc0", "0xe3" - ] - }, - { - "depth": 1, - "gas": 265734, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2611,19 +2591,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 298, + "op": "SWAP1", + "gas": 411430, + "gasCost": 3, + "depth": 1, "stack": [ "0x80", "0xc0", "0x23" - ] - }, - { - "depth": 1, - "gas": 265731, - "gasCost": 42, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2633,19 +2613,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", + ] + }, + { "pc": 299, + "op": "KECCAK256", + "gas": 411427, + "gasCost": 42, + "depth": 1, "stack": [ "0x80", "0x23", "0xc0" - ] - }, - { - "depth": 1, - "gas": 265689, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2655,18 +2635,18 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 300, - "stack": [ - "0x80", - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" ] }, { - "depth": 1, - "gas": 265686, + "pc": 300, + "op": "SWAP1", + "gas": 411385, "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2676,18 +2656,18 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 301, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x80" ] }, { - "depth": 1, - "gas": 265683, + "pc": 301, + "op": "DUP2", + "gas": 411382, "gasCost": 3, + "depth": 1, + "stack": [ + "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", + "0x80" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2697,19 +2677,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 302, + "op": "PUSH2", + "gas": 411379, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 265680, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2719,20 +2699,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 305, + "op": "SWAP2", + "gas": 411376, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137" - ] - }, - { - "depth": 1, - "gas": 265677, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2742,20 +2722,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", + ] + }, + { "pc": 306, + "op": "SWAP1", + "gas": 411373, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x80" - ] - }, - { - "depth": 1, - "gas": 265674, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2765,20 +2745,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", + ] + }, + { "pc": 307, + "op": "PUSH2", + "gas": 411370, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 265671, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2788,21 +2768,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", + ] + }, + { "pc": 310, + "op": "JUMP", + "gas": 411367, + "gasCost": 8, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x273" - ] - }, - { - "depth": 1, - "gas": 265663, - "gasCost": 1, + "0x28c" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2812,20 +2792,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 652, "op": "JUMPDEST", - "pc": 627, + "gas": 411359, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 265662, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2835,20 +2815,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 653, "op": "DUP2", - "pc": 628, + "gas": 411358, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 265659, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2858,21 +2838,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 654, "op": "MLOAD", - "pc": 629, + "gas": 411355, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x80" - ] - }, - { - "depth": 1, - "gas": 265656, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2882,21 +2862,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 655, "op": "PUSH1", - "pc": 630, + "gas": 411352, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe" - ] - }, - { - "depth": 1, - "gas": 265653, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2906,9 +2886,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 657, "op": "PUSH1", - "pc": 632, + "gas": 411349, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -2916,12 +2901,7 @@ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", "0x1" - ] - }, - { - "depth": 1, - "gas": 265650, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2931,9 +2911,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 659, "op": "PUSH1", - "pc": 634, + "gas": 411346, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -2942,12 +2927,7 @@ "0xe", "0x1", "0x1" - ] - }, - { - "depth": 1, - "gas": 265647, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2957,9 +2937,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 661, "op": "SHL", - "pc": 636, + "gas": 411343, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -2969,12 +2954,7 @@ "0x1", "0x1", "0x40" - ] - }, - { - "depth": 1, - "gas": 265644, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2984,9 +2964,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 662, "op": "SUB", - "pc": 637, + "gas": 411340, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -2995,12 +2980,7 @@ "0xe", "0x1", "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 265641, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3010,9 +2990,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 663, "op": "DUP2", - "pc": 638, + "gas": 411337, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -3020,12 +3005,7 @@ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 265638, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3035,9 +3015,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 664, "op": "GT", - "pc": 639, + "gas": 411334, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -3046,12 +3031,7 @@ "0xe", "0xffffffffffffffff", "0xe" - ] - }, - { - "depth": 1, - "gas": 265635, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3061,9 +3041,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 665, "op": "ISZERO", - "pc": 640, + "gas": 411331, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -3071,12 +3056,7 @@ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", "0x0" - ] - }, - { - "depth": 1, - "gas": 265632, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3086,9 +3066,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 666, "op": "PUSH2", - "pc": 641, + "gas": 411328, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -3096,12 +3081,7 @@ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", "0x1" - ] - }, - { - "depth": 1, - "gas": 265629, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3111,9 +3091,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 669, "op": "JUMPI", - "pc": 644, + "gas": 411325, + "gasCost": 10, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -3121,13 +3106,8 @@ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", "0x1", - "0x28c" - ] - }, - { - "depth": 1, - "gas": 265619, - "gasCost": 1, + "0x2a5" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3137,21 +3117,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 677, "op": "JUMPDEST", - "pc": 652, + "gas": 411315, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe" - ] - }, - { - "depth": 1, - "gas": 265618, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3161,21 +3141,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 678, "op": "PUSH2", - "pc": 653, + "gas": 411314, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe" - ] - }, - { - "depth": 1, - "gas": 265615, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3185,22 +3165,22 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 681, "op": "DUP2", - "pc": 656, + "gas": 411311, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0" - ] - }, - { - "depth": 1, - "gas": 265612, - "gasCost": 3, + "0x2b9" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3210,23 +3190,23 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 682, "op": "PUSH2", - "pc": 657, + "gas": 411308, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe" - ] - }, - { - "depth": 1, - "gas": 265609, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3236,24 +3216,24 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 685, "op": "DUP5", - "pc": 660, + "gas": 411305, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 265606, - "gasCost": 2100, + "0x2b3" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3263,25 +3243,25 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 686, "op": "SLOAD", - "pc": 661, + "gas": 411302, + "gasCost": 2100, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263506, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3292,24 +3272,29 @@ "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" ], + "storage": { + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005", + "ac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac": "0000000000000000000000000000000000000000000000000000000000000000" + } + }, + { + "pc": 687, "op": "PUSH2", - "pc": 662, + "gas": 409202, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0" - ] - }, - { - "depth": 1, - "gas": 263503, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3319,26 +3304,26 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 690, "op": "JUMP", - "pc": 665, + "gas": 409199, + "gasCost": 8, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", - "0x1ea" - ] - }, - { - "depth": 1, - "gas": 263495, - "gasCost": 1, + "0x203" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3348,25 +3333,25 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 515, "op": "JUMPDEST", - "pc": 490, + "gas": 409191, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0" - ] - }, - { - "depth": 1, - "gas": 263494, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3376,25 +3361,25 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 516, "op": "PUSH1", - "pc": 491, + "gas": 409190, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0" - ] - }, - { - "depth": 1, - "gas": 263491, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3404,26 +3389,26 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 518, "op": "DUP2", - "pc": 493, + "gas": 409187, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 263488, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3433,27 +3418,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 519, "op": "DUP2", - "pc": 494, + "gas": 409184, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 263485, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3463,28 +3448,28 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 520, "op": "SHR", - "pc": 495, + "gas": 409181, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x1", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 263482, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3494,27 +3479,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 521, "op": "SWAP1", - "pc": 496, + "gas": 409178, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 263479, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3524,27 +3509,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 522, "op": "DUP3", - "pc": 497, + "gas": 409175, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 263476, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3554,28 +3539,28 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 523, "op": "AND", - "pc": 498, + "gas": 409172, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 263473, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3585,27 +3570,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 524, "op": "DUP1", - "pc": 499, + "gas": 409169, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263470, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3615,28 +3600,28 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 525, "op": "PUSH2", - "pc": 500, + "gas": 409166, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263467, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3646,29 +3631,29 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 528, "op": "JUMPI", - "pc": 503, + "gas": 409163, + "gasCost": 10, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0x0", - "0x1fe" - ] - }, - { - "depth": 1, - "gas": 263457, - "gasCost": 3, + "0x217" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3678,27 +3663,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 529, "op": "PUSH1", - "pc": 504, + "gas": 409153, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263454, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3708,28 +3693,28 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 531, "op": "DUP3", - "pc": 506, + "gas": 409150, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0x7f" - ] - }, - { - "depth": 1, - "gas": 263451, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3739,29 +3724,29 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 507, - "stack": [ + ] + }, + { + "pc": 532, + "op": "AND", + "gas": 409147, + "gasCost": 3, + "depth": 1, + "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0x7f", "0x0" - ] - }, - { - "depth": 1, - "gas": 263448, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3771,28 +3756,28 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 533, "op": "SWAP2", - "pc": 508, + "gas": 409144, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263445, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3802,28 +3787,28 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 534, "op": "POP", - "pc": 509, + "gas": 409141, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263443, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3833,27 +3818,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 535, "op": "JUMPDEST", - "pc": 510, + "gas": 409139, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263442, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3863,27 +3848,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 536, "op": "PUSH1", - "pc": 511, + "gas": 409138, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263439, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3893,28 +3878,28 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 538, "op": "DUP3", - "pc": 513, + "gas": 409135, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0x20" - ] - }, - { - "depth": 1, - "gas": 263436, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3924,29 +3909,29 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 539, "op": "LT", - "pc": 514, + "gas": 409132, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 263433, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3956,28 +3941,28 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 540, "op": "DUP2", - "pc": 515, + "gas": 409129, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 263430, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3987,29 +3972,29 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 541, "op": "SUB", - "pc": 516, + "gas": 409126, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 263427, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4019,28 +4004,28 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 542, "op": "PUSH2", - "pc": 517, + "gas": 409123, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 263424, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4050,29 +4035,29 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 545, "op": "JUMPI", - "pc": 520, + "gas": 409120, + "gasCost": 10, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x21e" - ] - }, - { - "depth": 1, - "gas": 263414, - "gasCost": 1, + "0x237" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4082,27 +4067,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 567, "op": "JUMPDEST", - "pc": 542, + "gas": 409110, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263413, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4112,27 +4097,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 568, "op": "POP", - "pc": 543, + "gas": 409109, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263411, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4142,26 +4127,26 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 569, "op": "SWAP2", - "pc": 544, + "gas": 409107, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", - "0x29a", + "0x2b3", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263408, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4171,26 +4156,26 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 570, "op": "SWAP1", - "pc": 545, + "gas": 409104, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0x0", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 263405, - "gasCost": 2, + "0x2b3" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4200,26 +4185,26 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 571, "op": "POP", - "pc": 546, + "gas": 409101, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", - "0x29a", + "0x2b3", "0x0" - ] - }, - { - "depth": 1, - "gas": 263403, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4229,25 +4214,25 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 572, "op": "JUMP", - "pc": 547, + "gas": 409099, + "gasCost": 8, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 263395, - "gasCost": 1, + "0x2b3" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4257,24 +4242,24 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 691, "op": "JUMPDEST", - "pc": 666, + "gas": 409091, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0" - ] - }, - { - "depth": 1, - "gas": 263394, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4284,24 +4269,24 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 692, "op": "DUP5", - "pc": 667, + "gas": 409090, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0" - ] - }, - { - "depth": 1, - "gas": 263391, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4311,25 +4296,25 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 693, "op": "PUSH2", - "pc": 668, + "gas": 409087, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263388, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4339,26 +4324,26 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 696, "op": "JUMP", - "pc": 671, + "gas": 409084, + "gasCost": 8, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x224" - ] - }, - { - "depth": 1, - "gas": 263380, - "gasCost": 1, + "0x23d" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4368,25 +4353,25 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 573, "op": "JUMPDEST", - "pc": 548, + "gas": 409076, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263379, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4396,25 +4381,25 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 574, "op": "PUSH1", - "pc": 549, + "gas": 409075, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263376, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4424,26 +4409,26 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 576, "op": "DUP3", - "pc": 551, + "gas": 409072, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x1f" - ] - }, - { - "depth": 1, - "gas": 263373, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4453,27 +4438,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 577, "op": "GT", - "pc": 552, + "gas": 409069, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x1f", "0x0" - ] - }, - { - "depth": 1, - "gas": 263370, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4483,26 +4468,26 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 578, "op": "ISZERO", - "pc": 553, + "gas": 409066, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x0" - ] - }, - { - "depth": 1, - "gas": 263367, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4512,26 +4497,26 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 579, "op": "PUSH2", - "pc": 554, + "gas": 409063, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x1" - ] - }, - { - "depth": 1, - "gas": 263364, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4541,27 +4526,27 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 582, "op": "JUMPI", - "pc": 557, + "gas": 409060, + "gasCost": 10, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x1", - "0x26e" - ] - }, - { - "depth": 1, - "gas": 263354, - "gasCost": 1, + "0x287" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4571,25 +4556,25 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 647, "op": "JUMPDEST", - "pc": 622, + "gas": 409050, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263353, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4599,25 +4584,25 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 648, "op": "POP", - "pc": 623, + "gas": 409049, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 263351, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4627,24 +4612,24 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 649, "op": "POP", - "pc": 624, + "gas": 409047, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe", "0x0" - ] - }, - { - "depth": 1, - "gas": 263349, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4654,23 +4639,23 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 650, "op": "POP", - "pc": 625, + "gas": 409045, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0", + "0x2b9", "0xe" - ] - }, - { - "depth": 1, - "gas": 263347, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4680,22 +4665,22 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 651, "op": "JUMP", - "pc": 626, + "gas": 409043, + "gasCost": 8, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", - "0x2a0" - ] - }, - { - "depth": 1, - "gas": 263339, - "gasCost": 1, + "0x2b9" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4705,21 +4690,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 697, "op": "JUMPDEST", - "pc": 672, + "gas": 409035, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe" - ] - }, - { - "depth": 1, - "gas": 263338, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4729,21 +4714,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 698, "op": "PUSH1", - "pc": 673, + "gas": 409034, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe" - ] - }, - { - "depth": 1, - "gas": 263335, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4753,9 +4738,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 700, "op": "DUP1", - "pc": 675, + "gas": 409031, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -4763,12 +4753,7 @@ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", "0x20" - ] - }, - { - "depth": 1, - "gas": 263332, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4778,9 +4763,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 701, "op": "PUSH1", - "pc": 676, + "gas": 409028, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -4789,12 +4779,7 @@ "0xe", "0x20", "0x20" - ] - }, - { - "depth": 1, - "gas": 263329, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4804,9 +4789,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 703, "op": "DUP4", - "pc": 678, + "gas": 409025, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -4816,12 +4806,7 @@ "0x20", "0x20", "0x1f" - ] - }, - { - "depth": 1, - "gas": 263326, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4831,9 +4816,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 704, "op": "GT", - "pc": 679, + "gas": 409022, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -4844,12 +4834,7 @@ "0x20", "0x1f", "0xe" - ] - }, - { - "depth": 1, - "gas": 263323, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4859,9 +4844,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 705, "op": "PUSH1", - "pc": 680, + "gas": 409019, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -4871,12 +4861,7 @@ "0x20", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 263320, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4886,9 +4871,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 707, "op": "DUP2", - "pc": 682, + "gas": 409016, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -4899,12 +4889,7 @@ "0x20", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 263317, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4914,9 +4899,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 708, "op": "EQ", - "pc": 683, + "gas": 409013, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -4928,12 +4918,7 @@ "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 263314, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4943,9 +4928,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 709, "op": "PUSH2", - "pc": 684, + "gas": 409010, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -4956,12 +4946,7 @@ "0x20", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263311, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4971,9 +4956,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 712, "op": "JUMPI", - "pc": 687, + "gas": 409007, + "gasCost": 10, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -4984,13 +4974,8 @@ "0x20", "0x0", "0x0", - "0x2d5" - ] - }, - { - "depth": 1, - "gas": 263301, - "gasCost": 3, + "0x2ee" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5000,9 +4985,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 713, "op": "PUSH1", - "pc": 688, + "gas": 408997, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5012,12 +5002,7 @@ "0x20", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 263298, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5027,9 +5012,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 715, "op": "DUP5", - "pc": 690, + "gas": 408994, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5040,12 +5030,7 @@ "0x20", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263295, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5055,9 +5040,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 716, "op": "ISZERO", - "pc": 691, + "gas": 408991, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5069,12 +5059,7 @@ "0x0", "0x0", "0xe" - ] - }, - { - "depth": 1, - "gas": 263292, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5084,9 +5069,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 717, "op": "PUSH2", - "pc": 692, + "gas": 408988, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5098,12 +5088,7 @@ "0x0", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263289, - "gasCost": 10, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5113,9 +5098,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 720, "op": "JUMPI", - "pc": 695, + "gas": 408985, + "gasCost": 10, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5127,13 +5117,8 @@ "0x0", "0x0", "0x0", - "0x2bd" - ] - }, - { - "depth": 1, - "gas": 263279, - "gasCost": 2, + "0x2d6" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5143,9 +5128,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 721, "op": "POP", - "pc": 696, + "gas": 408975, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5156,12 +5146,7 @@ "0x20", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 263277, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5171,9 +5156,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 722, "op": "DUP6", - "pc": 697, + "gas": 408973, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5183,12 +5173,7 @@ "0x20", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 263274, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5198,9 +5183,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 723, "op": "DUP4", - "pc": 698, + "gas": 408970, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5211,12 +5201,7 @@ "0x20", "0x0", "0x80" - ] - }, - { - "depth": 1, - "gas": 263271, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5226,9 +5211,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 724, "op": "ADD", - "pc": 699, + "gas": 408967, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5240,12 +5230,7 @@ "0x0", "0x80", "0x20" - ] - }, - { - "depth": 1, - "gas": 263268, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5255,9 +5240,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 725, "op": "MLOAD", - "pc": 700, + "gas": 408964, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5268,12 +5258,7 @@ "0x20", "0x0", "0xa0" - ] - }, - { - "depth": 1, - "gas": 263265, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5283,9 +5268,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 726, "op": "JUMPDEST", - "pc": 701, + "gas": 408961, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5296,12 +5286,7 @@ "0x20", "0x0", "0x612073686f727420737472696e67000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 263264, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5311,9 +5296,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 727, "op": "PUSH1", - "pc": 702, + "gas": 408960, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5324,12 +5314,7 @@ "0x20", "0x0", "0x612073686f727420737472696e67000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 263261, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5339,9 +5324,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 729, "op": "NOT", - "pc": 704, + "gas": 408957, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5353,12 +5343,7 @@ "0x0", "0x612073686f727420737472696e67000000000000000000000000000000000000", "0x0" - ] - }, - { - "depth": 1, - "gas": 263258, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5368,9 +5353,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 730, "op": "PUSH1", - "pc": 705, + "gas": 408954, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5382,12 +5372,7 @@ "0x0", "0x612073686f727420737472696e67000000000000000000000000000000000000", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 263255, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5397,9 +5382,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 732, "op": "DUP7", - "pc": 707, + "gas": 408951, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5412,12 +5402,7 @@ "0x612073686f727420737472696e67000000000000000000000000000000000000", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "0x3" - ] - }, - { - "depth": 1, - "gas": 263252, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5427,9 +5412,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 733, "op": "SWAP1", - "pc": 708, + "gas": 408948, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5443,12 +5433,7 @@ "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "0x3", "0xe" - ] - }, - { - "depth": 1, - "gas": 263249, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5458,9 +5443,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 734, "op": "SHL", - "pc": 709, + "gas": 408945, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5474,12 +5464,7 @@ "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "0xe", "0x3" - ] - }, - { - "depth": 1, - "gas": 263246, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5489,9 +5474,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 735, "op": "SHR", - "pc": 710, + "gas": 408942, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5504,12 +5494,7 @@ "0x612073686f727420737472696e67000000000000000000000000000000000000", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "0x70" - ] - }, - { - "depth": 1, - "gas": 263243, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5519,9 +5504,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 736, "op": "NOT", - "pc": 711, + "gas": 408939, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5533,12 +5523,7 @@ "0x0", "0x612073686f727420737472696e67000000000000000000000000000000000000", "0xffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 263240, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5548,9 +5533,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 737, "op": "AND", - "pc": 712, + "gas": 408936, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5562,12 +5552,7 @@ "0x0", "0x612073686f727420737472696e67000000000000000000000000000000000000", "0xffffffffffffffffffffffffffff000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 263237, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5577,9 +5562,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 738, "op": "PUSH1", - "pc": 713, + "gas": 408933, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5590,12 +5580,7 @@ "0x20", "0x0", "0x612073686f727420737472696e67000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 263234, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5605,9 +5590,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 740, "op": "DUP6", - "pc": 715, + "gas": 408930, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5619,12 +5609,7 @@ "0x0", "0x612073686f727420737472696e67000000000000000000000000000000000000", "0x1" - ] - }, - { - "depth": 1, - "gas": 263231, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5634,9 +5619,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 741, "op": "SWAP1", - "pc": 716, + "gas": 408927, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5649,12 +5639,7 @@ "0x612073686f727420737472696e67000000000000000000000000000000000000", "0x1", "0xe" - ] - }, - { - "depth": 1, - "gas": 263228, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5664,9 +5649,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 742, "op": "SHL", - "pc": 717, + "gas": 408924, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5679,12 +5669,7 @@ "0x612073686f727420737472696e67000000000000000000000000000000000000", "0xe", "0x1" - ] - }, - { - "depth": 1, - "gas": 263225, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5694,9 +5679,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 743, "op": "OR", - "pc": 718, + "gas": 408921, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5708,12 +5698,7 @@ "0x0", "0x612073686f727420737472696e67000000000000000000000000000000000000", "0x1c" - ] - }, - { - "depth": 1, - "gas": 263222, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5723,9 +5708,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 744, "op": "DUP6", - "pc": 719, + "gas": 408918, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5736,12 +5726,7 @@ "0x20", "0x0", "0x612073686f727420737472696e6700000000000000000000000000000000001c" - ] - }, - { - "depth": 1, - "gas": 263219, - "gasCost": 20000, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5751,9 +5736,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 745, "op": "SSTORE", - "pc": 720, + "gas": 408915, + "gasCost": 20000, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5765,12 +5755,7 @@ "0x0", "0x612073686f727420737472696e6700000000000000000000000000000000001c", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 243219, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5781,8 +5766,18 @@ "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" ], + "storage": { + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005", + "ac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac": "612073686f727420737472696e6700000000000000000000000000000000001c" + } + }, + { + "pc": 746, "op": "PUSH2", - "pc": 721, + "gas": 388915, + "gasCost": 3, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5792,12 +5787,7 @@ "0x20", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 243216, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5807,9 +5797,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 749, "op": "JUMP", - "pc": 724, + "gas": 388912, + "gasCost": 8, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5819,13 +5814,8 @@ "0x20", "0x20", "0x0", - "0x26a" - ] - }, - { - "depth": 1, - "gas": 243208, - "gasCost": 1, + "0x283" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5835,9 +5825,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 643, "op": "JUMPDEST", - "pc": 618, + "gas": 388904, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5847,12 +5842,7 @@ "0x20", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 243207, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5862,9 +5852,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 644, "op": "POP", - "pc": 619, + "gas": 388903, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5874,12 +5869,7 @@ "0x20", "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 243205, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5889,9 +5879,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 645, "op": "POP", - "pc": 620, + "gas": 388901, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5900,12 +5895,7 @@ "0xe", "0x20", "0x20" - ] - }, - { - "depth": 1, - "gas": 243203, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5915,9 +5905,14 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 646, "op": "POP", - "pc": 621, + "gas": 388899, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", @@ -5925,12 +5920,7 @@ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe", "0x20" - ] - }, - { - "depth": 1, - "gas": 243201, - "gasCost": 1, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5940,21 +5930,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 647, "op": "JUMPDEST", - "pc": 622, + "gas": 388897, + "gasCost": 1, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe" - ] - }, - { - "depth": 1, - "gas": 243200, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5964,21 +5954,21 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 648, "op": "POP", - "pc": 623, + "gas": 388896, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0xe" - ] - }, - { - "depth": 1, - "gas": 243198, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5988,20 +5978,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 649, "op": "POP", - "pc": 624, + "gas": 388894, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80", "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" - ] - }, - { - "depth": 1, - "gas": 243196, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6011,19 +6001,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 650, "op": "POP", - "pc": 625, + "gas": 388892, + "gasCost": 2, + "depth": 1, "stack": [ "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", "0x137", "0x80" - ] - }, - { - "depth": 1, - "gas": 243194, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6033,18 +6023,18 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 626, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", - "0x137" ] }, { + "pc": 651, + "op": "JUMP", + "gas": 388890, + "gasCost": 8, "depth": 1, - "gas": 243186, - "gasCost": 1, + "stack": [ + "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac", + "0x137" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6054,17 +6044,17 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 311, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" ] }, { + "pc": 311, + "op": "JUMPDEST", + "gas": 388882, + "gasCost": 1, "depth": 1, - "gas": 243185, - "gasCost": 2, + "stack": [ + "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6074,17 +6064,17 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 312, - "stack": [ - "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" ] }, { + "pc": 312, + "op": "POP", + "gas": 388881, + "gasCost": 2, "depth": 1, - "gas": 243183, - "gasCost": 3, + "stack": [ + "0xac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6094,15 +6084,15 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 313, - "stack": [] + ] }, { - "depth": 1, - "gas": 243180, + "pc": 313, + "op": "PUSH1", + "gas": 388879, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6112,17 +6102,17 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 315, - "stack": [ - "0x40" ] }, { - "depth": 1, - "gas": 243177, + "pc": 315, + "op": "MLOAD", + "gas": 388876, "gasCost": 3, + "depth": 1, + "stack": [ + "0x40" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6132,17 +6122,17 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 316, - "stack": [ - "0xc0" ] }, { - "depth": 1, - "gas": 243174, + "pc": 316, + "op": "DUP1", + "gas": 388873, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6152,18 +6142,18 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 317, - "stack": [ - "0xc0", - "0xc0" ] }, { - "depth": 1, - "gas": 243171, + "pc": 317, + "op": "PUSH1", + "gas": 388870, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0xc0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6173,19 +6163,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 319, + "op": "ADD", + "gas": 388867, + "gasCost": 3, + "depth": 1, "stack": [ "0xc0", "0xc0", "0x80" - ] - }, - { - "depth": 1, - "gas": 243168, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6195,18 +6185,18 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 320, - "stack": [ - "0xc0", - "0x140" ] }, { - "depth": 1, - "gas": 243165, + "pc": 320, + "op": "PUSH1", + "gas": 388864, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x140" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6216,39 +6206,39 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 322, + "op": "MSTORE", + "gas": 388861, + "gasCost": 3, + "depth": 1, "stack": [ "0xc0", "0x140", "0x40" - ] - }, - { - "depth": 1, - "gas": 243162, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", + "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000e", "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 323, - "stack": [ - "0xc0" ] }, { - "depth": 1, - "gas": 243159, + "pc": 323, + "op": "DUP1", + "gas": 388858, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6258,18 +6248,18 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 324, - "stack": [ - "0xc0", - "0xc0" ] }, { - "depth": 1, - "gas": 243156, + "pc": 324, + "op": "PUSH1", + "gas": 388855, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0xc0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6279,19 +6269,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", + ] + }, + { "pc": 326, + "op": "DUP2", + "gas": 388852, + "gasCost": 3, + "depth": 1, "stack": [ "0xc0", "0xc0", "0x53" - ] - }, - { - "depth": 1, - "gas": 243153, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6301,20 +6291,20 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", + ] + }, + { "pc": 327, + "op": "MSTORE", + "gas": 388849, + "gasCost": 3, + "depth": 1, "stack": [ "0xc0", "0xc0", "0x53", "0xc0" - ] - }, - { - "depth": 1, - "gas": 243150, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6322,20 +6312,20 @@ "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000e", "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", + "6162630000000000000000000000000000000000000000000000000000000000", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 328, - "stack": [ - "0xc0", - "0xc0" ] }, { - "depth": 1, - "gas": 243147, + "pc": 328, + "op": "PUSH1", + "gas": 388846, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0xc0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6345,19 +6335,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000053", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", + ] + }, + { "pc": 330, + "op": "ADD", + "gas": 388843, + "gasCost": 3, + "depth": 1, "stack": [ "0xc0", "0xc0", "0x20" - ] - }, - { - "depth": 1, - "gas": 243144, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6367,18 +6357,18 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000053", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 331, - "stack": [ - "0xc0", - "0xe0" ] }, { - "depth": 1, - "gas": 243141, + "pc": 331, + "op": "PUSH2", + "gas": 388840, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0xe0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6388,19 +6378,19 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000053", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 334, - "stack": [ - "0xc0", - "0xe0", - "0x638" ] }, { - "depth": 1, - "gas": 243138, + "pc": 334, + "op": "PUSH1", + "gas": 388837, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0xe0", + "0x651" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6410,20 +6400,43 @@ "612073686f727420737472696e67000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000053", "0000010000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", + ] + }, + { "pc": 336, + "op": "SWAP2", + "gas": 388834, + "gasCost": 3, + "depth": 1, "stack": [ "0xc0", "0xe0", - "0x638", + "0x651", "0x53" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "0000010000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 243135, + "pc": 337, + "op": "CODECOPY", + "gas": 388831, "gasCost": 18, + "depth": 1, + "stack": [ + "0xc0", + "0x53", + "0x651", + "0xe0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6432,23 +6445,65 @@ "000000000000000000000000000000000000000000000000000000000000000e", "612073686f727420737472696e67000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000053", - "0000010000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0000010000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 338, + "op": "PUSH1", + "gas": 388813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0" ], - "op": "CODECOPY", - "pc": 337, + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000" + ] + }, + { + "pc": 340, + "op": "DUP1", + "gas": 388810, + "gasCost": 3, + "depth": 1, "stack": [ "0xc0", - "0x53", - "0x638", - "0xe0" + "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000" ] }, { - "depth": 1, - "gas": 243117, + "pc": 341, + "op": "MLOAD", + "gas": 388807, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x40", + "0x40" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6460,17 +6515,121 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000" + ] + }, + { + "pc": 342, + "op": "PUSH1", + "gas": 388804, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x40", + "0x140" ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000" + ] + }, + { + "pc": 344, "op": "PUSH1", - "pc": 338, + "gas": 388801, + "gasCost": 3, + "depth": 1, "stack": [ - "0xc0" + "0xc0", + "0x40", + "0x140", + "0x61" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000" ] }, { + "pc": 346, + "op": "SHL", + "gas": 388798, + "gasCost": 3, "depth": 1, - "gas": 243114, + "stack": [ + "0xc0", + "0x40", + "0x140", + "0x61", + "0xf8" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000" + ] + }, + { + "pc": 347, + "op": "DUP2", + "gas": 388795, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x40", + "0x140", + "0x6100000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000" + ] + }, + { + "pc": 348, + "op": "MSTORE", + "gas": 388792, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xc0", + "0x40", + "0x140", + "0x6100000000000000000000000000000000000000000000000000000000000000", + "0x140" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6482,18 +6641,310 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000" + ] + }, + { + "pc": 349, + "op": "PUSH1", + "gas": 388786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x40", + "0x140" ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 351, "op": "DUP1", - "pc": 340, + "gas": 388783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x40", + "0x140", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 352, + "op": "DUP3", + "gas": 388780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x40", + "0x140", + "0x1", + "0x1" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 353, + "op": "ADD", + "gas": 388777, + "gasCost": 3, + "depth": 1, "stack": [ "0xc0", + "0x40", + "0x140", + "0x1", + "0x1", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 354, + "op": "MSTORE", + "gas": 388774, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xc0", + "0x40", + "0x140", + "0x1", + "0x141" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 355, + "op": "SWAP1", + "gas": 388768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x40", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 356, + "op": "MLOAD", + "gas": 388765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x140", "0x40" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 357, + "op": "SWAP1", + "gas": 388762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x140", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 358, + "op": "DUP2", + "gas": 388759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x140", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 359, + "op": "SWAP1", + "gas": 388756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x140", + "0x140", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 360, + "op": "SUB", + "gas": 388753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x140", + "0x140", + "0x140" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 243111, + "pc": 361, + "op": "PUSH1", + "gas": 388750, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x140", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6504,20 +6955,23 @@ "0000000000000000000000000000000000000000000000000000000000000053", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "MLOAD", - "pc": 341, - "stack": [ - "0xc0", - "0x40", - "0x40" + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 243108, + "pc": 363, + "op": "ADD", + "gas": 388747, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x140", + "0x0", + "0x21" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6528,20 +6982,22 @@ "0000000000000000000000000000000000000000000000000000000000000053", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "PUSH1", - "pc": 342, - "stack": [ - "0xc0", - "0x40", - "0x140" + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 243105, + "pc": 364, + "op": "SWAP1", + "gas": 388744, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0x140", + "0x21" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6552,21 +7008,22 @@ "0000000000000000000000000000000000000000000000000000000000000053", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "PUSH1", - "pc": 344, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x61" + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { + "pc": 365, + "op": "KECCAK256", + "gas": 388741, + "gasCost": 42, "depth": 1, - "gas": 243102, - "gasCost": 3, + "stack": [ + "0xc0", + "0x21", + "0x140" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6577,22 +7034,21 @@ "0000000000000000000000000000000000000000000000000000000000000053", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "SHL", - "pc": 346, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x61", - "0xf8" + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 243099, + "pc": 366, + "op": "SWAP1", + "gas": 388699, "gasCost": 3, + "depth": 1, + "stack": [ + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6603,21 +7059,21 @@ "0000000000000000000000000000000000000000000000000000000000000053", "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ], - "op": "DUP2", - "pc": 347, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x6100000000000000000000000000000000000000000000000000000000000000" + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { + "pc": 367, + "op": "PUSH2", + "gas": 388696, + "gasCost": 3, "depth": 1, - "gas": 243096, - "gasCost": 6, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0xc0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6629,22 +7085,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 348, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x6100000000000000000000000000000000000000000000000000000000000000", - "0x140" + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 243090, + "pc": 370, + "op": "SWAP1", + "gas": 388693, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0xc0", + "0x178" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6656,20 +7111,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 349, - "stack": [ - "0xc0", - "0x40", - "0x140" + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 243087, + "pc": 371, + "op": "DUP3", + "gas": 388690, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6681,21 +7137,22 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 351, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x1" + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 243084, + "pc": 372, + "op": "PUSH2", + "gas": 388687, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6707,22 +7164,23 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 352, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x1", - "0x1" + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { + "pc": 375, + "op": "JUMP", + "gas": 388684, + "gasCost": 8, "depth": 1, - "gas": 243081, - "gasCost": 3, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x28c" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6734,23 +7192,22 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 353, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x1", - "0x1", - "0x140" + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { + "pc": 652, + "op": "JUMPDEST", + "gas": 388676, + "gasCost": 1, "depth": 1, - "gas": 243078, - "gasCost": 6, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6763,22 +7220,21 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 354, - "stack": [ - "0xc0", - "0x40", - "0x140", - "0x1", - "0x141" + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 243072, + "pc": 653, + "op": "DUP2", + "gas": 388675, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6792,19 +7248,21 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 355, - "stack": [ - "0xc0", - "0x40", - "0x140" ] }, { - "depth": 1, - "gas": 243069, + "pc": 654, + "op": "MLOAD", + "gas": 388672, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0xc0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6818,19 +7276,21 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 356, - "stack": [ - "0xc0", - "0x140", - "0x40" ] }, { - "depth": 1, - "gas": 243066, + "pc": 655, + "op": "PUSH1", + "gas": 388669, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6844,19 +7304,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 357, - "stack": [ - "0xc0", - "0x140", - "0x140" ] }, { - "depth": 1, - "gas": 243063, + "pc": 657, + "op": "PUSH1", + "gas": 388666, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6870,19 +7333,23 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 358, - "stack": [ - "0xc0", - "0x140", - "0x140" ] }, { - "depth": 1, - "gas": 243060, + "pc": 659, + "op": "PUSH1", + "gas": 388663, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x1", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6896,20 +7363,24 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 359, - "stack": [ - "0xc0", - "0x140", - "0x140", - "0x140" ] }, { - "depth": 1, - "gas": 243057, + "pc": 661, + "op": "SHL", + "gas": 388660, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x1", + "0x1", + "0x40" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6923,20 +7394,23 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 360, - "stack": [ - "0xc0", - "0x140", - "0x140", - "0x140" ] }, { - "depth": 1, - "gas": 243054, + "pc": 662, + "op": "SUB", + "gas": 388657, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x1", + "0x10000000000000000" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6950,19 +7424,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 361, - "stack": [ - "0xc0", - "0x140", - "0x0" ] }, { - "depth": 1, - "gas": 243051, + "pc": 663, + "op": "DUP2", + "gas": 388654, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0xffffffffffffffff" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -6976,20 +7453,23 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 363, - "stack": [ - "0xc0", - "0x140", - "0x0", - "0x21" ] }, { - "depth": 1, - "gas": 243048, + "pc": 664, + "op": "GT", + "gas": 388651, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0xffffffffffffffff", + "0x53" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7003,19 +7483,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 364, - "stack": [ - "0xc0", - "0x140", - "0x21" ] }, { + "pc": 665, + "op": "ISZERO", + "gas": 388648, + "gasCost": 3, "depth": 1, - "gas": 243045, - "gasCost": 42, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7029,19 +7512,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 365, - "stack": [ - "0xc0", - "0x21", - "0x140" ] }, { - "depth": 1, - "gas": 243003, + "pc": 666, + "op": "PUSH2", + "gas": 388645, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7055,18 +7541,23 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 366, - "stack": [ - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" ] }, { + "pc": 669, + "op": "JUMPI", + "gas": 388642, + "gasCost": 10, "depth": 1, - "gas": 243000, - "gasCost": 3, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x1", + "0x2a5" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7080,18 +7571,21 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 367, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0xc0" ] }, { + "pc": 677, + "op": "JUMPDEST", + "gas": 388632, + "gasCost": 1, "depth": 1, - "gas": 242997, - "gasCost": 3, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7105,19 +7599,21 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 370, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0xc0", - "0x178" ] }, { - "depth": 1, - "gas": 242994, + "pc": 678, + "op": "PUSH2", + "gas": 388631, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7131,19 +7627,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 371, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0" ] }, { - "depth": 1, - "gas": 242991, + "pc": 681, + "op": "DUP2", + "gas": 388628, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x2b9" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7157,20 +7656,23 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 682, "op": "PUSH2", - "pc": 372, + "gas": 388625, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 242988, - "gasCost": 8, + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x2b9", + "0x53" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7184,21 +7686,24 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 375, + ] + }, + { + "pc": 685, + "op": "DUP5", + "gas": 388622, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x273" - ] - }, - { - "depth": 1, - "gas": 242980, - "gasCost": 1, + "0x53", + "0x2b9", + "0x53", + "0x2b3" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7212,20 +7717,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 627, + ] + }, + { + "pc": 686, + "op": "SLOAD", + "gas": 388619, + "gasCost": 2100, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x2b9", + "0x53", + "0x2b3", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 242979, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7240,19 +7750,30 @@ "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" ], - "op": "DUP2", - "pc": 628, + "storage": { + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005", + "ac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac": "612073686f727420737472696e6700000000000000000000000000000000001c", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02": "0000000000000000000000000000000000000000000000000000000000000000" + } + }, + { + "pc": 687, + "op": "PUSH2", + "gas": 386519, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 242976, - "gasCost": 3, + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x2b9", + "0x53", + "0x2b3", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7266,21 +7787,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 629, + ] + }, + { + "pc": 690, + "op": "JUMP", + "gas": 386516, + "gasCost": 8, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 242973, - "gasCost": 3, + "0x53", + "0x2b9", + "0x53", + "0x2b3", + "0x0", + "0x203" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7294,21 +7820,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 630, + ] + }, + { + "pc": 515, + "op": "JUMPDEST", + "gas": 386508, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 242970, - "gasCost": 3, + "0x53", + "0x2b9", + "0x53", + "0x2b3", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7322,22 +7852,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 516, "op": "PUSH1", - "pc": 632, + "gas": 386507, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x1" - ] - }, - { - "depth": 1, - "gas": 242967, - "gasCost": 3, + "0x2b9", + "0x53", + "0x2b3", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7351,23 +7884,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 634, + ] + }, + { + "pc": 518, + "op": "DUP2", + "gas": 386504, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x1", + "0x2b9", + "0x53", + "0x2b3", + "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 242964, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7381,24 +7917,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 636, + ] + }, + { + "pc": 519, + "op": "DUP2", + "gas": 386501, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", + "0x2b9", + "0x53", + "0x2b3", + "0x0", "0x1", - "0x1", - "0x40" - ] - }, - { - "depth": 1, - "gas": 242961, - "gasCost": 3, + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7412,23 +7951,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 637, + ] + }, + { + "pc": 520, + "op": "SHR", + "gas": 386498, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", + "0x2b9", + "0x53", + "0x2b3", + "0x0", "0x1", - "0x10000000000000000" - ] - }, - { - "depth": 1, - "gas": 242958, - "gasCost": 3, + "0x0", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7442,22 +7986,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 638, + ] + }, + { + "pc": 521, + "op": "SWAP1", + "gas": 386495, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0xffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 242955, - "gasCost": 3, + "0x2b9", + "0x53", + "0x2b3", + "0x0", + "0x1", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7471,23 +8020,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 639, + ] + }, + { + "pc": 522, + "op": "DUP3", + "gas": 386492, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0xffffffffffffffff", - "0x53" - ] - }, - { - "depth": 1, - "gas": 242952, - "gasCost": 3, + "0x2b9", + "0x53", + "0x2b3", + "0x0", + "0x0", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7501,22 +8054,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 640, + ] + }, + { + "pc": 523, + "op": "AND", + "gas": 386489, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", + "0x2b9", + "0x53", + "0x2b3", + "0x0", + "0x0", + "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 242949, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7530,22 +8089,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 641, + ] + }, + { + "pc": 524, + "op": "DUP1", + "gas": 386486, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x1" - ] - }, - { - "depth": 1, - "gas": 242946, - "gasCost": 10, + "0x2b9", + "0x53", + "0x2b3", + "0x0", + "0x0", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7559,23 +8123,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 644, + ] + }, + { + "pc": 525, + "op": "PUSH2", + "gas": 386483, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x1", - "0x28c" - ] - }, - { - "depth": 1, - "gas": 242936, - "gasCost": 1, + "0x2b9", + "0x53", + "0x2b3", + "0x0", + "0x0", + "0x0", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7589,21 +8158,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 652, + ] + }, + { + "pc": 528, + "op": "JUMPI", + "gas": 386480, + "gasCost": 10, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 242935, - "gasCost": 3, + "0x53", + "0x2b9", + "0x53", + "0x2b3", + "0x0", + "0x0", + "0x0", + "0x0", + "0x217" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7617,21 +8194,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 653, + ] + }, + { + "pc": 529, + "op": "PUSH1", + "gas": 386470, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 242932, - "gasCost": 3, + "0x53", + "0x2b9", + "0x53", + "0x2b3", + "0x0", + "0x0", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7645,22 +8228,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 656, + ] + }, + { + "pc": 531, + "op": "DUP3", + "gas": 386467, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0" - ] - }, - { - "depth": 1, - "gas": 242929, - "gasCost": 3, + "0x2b9", + "0x53", + "0x2b3", + "0x0", + "0x0", + "0x0", + "0x7f" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7674,23 +8263,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 657, + ] + }, + { + "pc": 532, + "op": "AND", + "gas": 386464, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53" - ] - }, - { - "depth": 1, - "gas": 242926, - "gasCost": 3, + "0x2b9", + "0x53", + "0x2b3", + "0x0", + "0x0", + "0x0", + "0x7f", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7704,24 +8299,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 660, + ] + }, + { + "pc": 533, + "op": "SWAP2", + "gas": 386461, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 242923, - "gasCost": 2100, + "0x2b3", + "0x0", + "0x0", + "0x0", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7735,25 +8334,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SLOAD", - "pc": 661, + ] + }, + { + "pc": 534, + "op": "POP", + "gas": 386458, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240823, - "gasCost": 3, + "0x2b3", + "0x0", + "0x0", + "0x0", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7767,25 +8369,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 662, + ] + }, + { + "pc": 535, + "op": "JUMPDEST", + "gas": 386456, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", + "0x2b3", + "0x0", + "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 240820, - "gasCost": 8, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7799,26 +8403,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 665, + ] + }, + { + "pc": 536, + "op": "PUSH1", + "gas": 386455, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", + "0x2b3", "0x0", - "0x1ea" - ] - }, - { - "depth": 1, - "gas": 240812, - "gasCost": 1, + "0x0", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7832,25 +8437,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 490, + ] + }, + { + "pc": 538, + "op": "DUP3", + "gas": 386452, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240811, - "gasCost": 3, + "0x2b3", + "0x0", + "0x0", + "0x0", + "0x20" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7864,25 +8472,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 491, + ] + }, + { + "pc": 539, + "op": "LT", + "gas": 386449, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", + "0x2b3", + "0x0", + "0x0", + "0x0", + "0x20", "0x0" - ] - }, - { - "depth": 1, - "gas": 240808, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7896,26 +8508,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 540, "op": "DUP2", - "pc": 493, + "gas": 386446, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", + "0x2b3", + "0x0", + "0x0", "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 240805, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7929,27 +8543,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 494, + ] + }, + { + "pc": 541, + "op": "SUB", + "gas": 386443, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", + "0x2b3", + "0x0", + "0x0", "0x0", "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 240802, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7963,28 +8579,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHR", - "pc": 495, + ] + }, + { + "pc": 542, + "op": "PUSH2", + "gas": 386440, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", + "0x2b3", "0x0", - "0x1", "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240799, - "gasCost": 3, + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -7998,27 +8614,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 496, + ] + }, + { + "pc": 545, + "op": "JUMPI", + "gas": 386437, + "gasCost": 10, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", + "0x2b3", "0x0", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240796, - "gasCost": 3, + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x237" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8032,27 +8650,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 497, + ] + }, + { + "pc": 567, + "op": "JUMPDEST", + "gas": 386427, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", + "0x2b3", "0x0", "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240793, - "gasCost": 3, + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8066,28 +8684,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 498, + ] + }, + { + "pc": 568, + "op": "POP", + "gas": 386426, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", + "0x2b3", "0x0", "0x0", - "0x1", "0x0" - ] - }, - { - "depth": 1, - "gas": 240790, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8101,27 +8718,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 499, + ] + }, + { + "pc": 569, + "op": "SWAP2", + "gas": 386424, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", + "0x2b3", "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 240787, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8135,28 +8751,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 500, + ] + }, + { + "pc": 570, + "op": "SWAP1", + "gas": 386421, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", "0x0", "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240784, - "gasCost": 10, + "0x2b3" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8170,29 +8784,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 503, + ] + }, + { + "pc": 571, + "op": "POP", + "gas": 386418, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", - "0x0", "0x0", - "0x0", - "0x1fe" - ] - }, - { - "depth": 1, - "gas": 240774, - "gasCost": 3, + "0x2b3", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8206,27 +8817,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 504, + ] + }, + { + "pc": 572, + "op": "JUMP", + "gas": 386416, + "gasCost": 8, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240771, - "gasCost": 3, + "0x2b3" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8240,28 +8849,24 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 506, + ] + }, + { + "pc": 691, + "op": "JUMPDEST", + "gas": 386408, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x7f" - ] - }, - { - "depth": 1, - "gas": 240768, - "gasCost": 3, + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8275,29 +8880,24 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 507, + ] + }, + { + "pc": 692, + "op": "DUP5", + "gas": 386407, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", - "0x0", - "0x0", - "0x7f", "0x0" - ] - }, - { - "depth": 1, - "gas": 240765, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8311,28 +8911,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 508, + ] + }, + { + "pc": 693, + "op": "PUSH2", + "gas": 386404, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240762, - "gasCost": 2, + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8346,28 +8943,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 509, + ] + }, + { + "pc": 696, + "op": "JUMP", + "gas": 386401, + "gasCost": 8, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", - "0x0", "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240760, - "gasCost": 1, + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x23d" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8381,27 +8976,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 573, "op": "JUMPDEST", - "pc": 510, + "gas": 386393, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240759, - "gasCost": 3, + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8415,27 +9008,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 574, "op": "PUSH1", - "pc": 511, + "gas": 386392, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240756, - "gasCost": 3, + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8449,28 +9040,60 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 576, "op": "DUP3", - "pc": 513, + "gas": 386389, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", "0x0", - "0x0", - "0x0", - "0x20" + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x1f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 240753, + "pc": 577, + "op": "GT", + "gas": 386386, "gasCost": 3, + "depth": 1, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53", + "0x2b9", + "0x53", + "0x0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x1f", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8484,29 +9107,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 514, + ] + }, + { + "pc": 578, + "op": "ISZERO", + "gas": 386383, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", - "0x0", "0x0", - "0x20", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x0" - ] - }, - { - "depth": 1, - "gas": 240750, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8520,28 +9140,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 515, + ] + }, + { + "pc": 579, + "op": "PUSH2", + "gas": 386380, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", - "0x0", "0x0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x1" - ] - }, - { - "depth": 1, - "gas": 240747, - "gasCost": 3, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8555,29 +9173,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SUB", - "pc": 516, + ] + }, + { + "pc": 582, + "op": "JUMPI", + "gas": 386377, + "gasCost": 10, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", - "0x0", "0x0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240744, - "gasCost": 3, + "0x287" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8591,28 +9207,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 517, + ] + }, + { + "pc": 647, + "op": "JUMPDEST", + "gas": 386367, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 240741, - "gasCost": 10, + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8626,29 +9239,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 520, + ] + }, + { + "pc": 648, + "op": "POP", + "gas": 386366, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", "0x0", - "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x21e" - ] - }, - { - "depth": 1, - "gas": 240731, - "gasCost": 1, + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8662,27 +9271,24 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 542, + ] + }, + { + "pc": 649, + "op": "POP", + "gas": 386364, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", + "0x2b9", "0x53", - "0x29a", - "0x0", - "0x0", "0x0" - ] - }, - { - "depth": 1, - "gas": 240730, - "gasCost": 2, + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8696,27 +9302,23 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 650, "op": "POP", - "pc": 543, + "gas": 386362, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240728, - "gasCost": 3, + "0x2b9", + "0x53" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8730,26 +9332,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 544, + ] + }, + { + "pc": 651, + "op": "JUMP", + "gas": 386360, + "gasCost": 8, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x29a", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240725, - "gasCost": 3, + "0x2b9" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8763,26 +9361,49 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 545, + ] + }, + { + "pc": 697, + "op": "JUMPDEST", + "gas": 386352, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x2a0", - "0x53", - "0x0", - "0x0", - "0x29a" + "0x53" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "6100000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { + "pc": 698, + "op": "PUSH1", + "gas": 386351, + "gasCost": 3, "depth": 1, - "gas": 240722, - "gasCost": 2, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x53" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8796,26 +9417,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 546, + ] + }, + { + "pc": 700, + "op": "DUP1", + "gas": 386348, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0x29a", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240720, - "gasCost": 8, + "0x20" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8829,25 +9446,23 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 547, + ] + }, + { + "pc": 701, + "op": "PUSH1", + "gas": 386345, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0x29a" - ] - }, - { - "depth": 1, - "gas": 240712, - "gasCost": 1, + "0x20", + "0x20" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8861,24 +9476,24 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 666, + ] + }, + { + "pc": 703, + "op": "DUP4", + "gas": 386342, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240711, - "gasCost": 3, + "0x20", + "0x20", + "0x1f" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8892,24 +9507,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 667, + ] + }, + { + "pc": 704, + "op": "GT", + "gas": 386339, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240708, - "gasCost": 3, + "0x20", + "0x20", + "0x1f", + "0x53" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8923,25 +9539,24 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 668, + ] + }, + { + "pc": 705, + "op": "PUSH1", + "gas": 386336, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240705, - "gasCost": 8, + "0x20", + "0x20", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8955,26 +9570,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 671, + ] + }, + { + "pc": 707, + "op": "DUP2", + "gas": 386333, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x224" - ] - }, - { - "depth": 1, - "gas": 240697, - "gasCost": 1, + "0x20", + "0x20", + "0x1", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -8988,25 +9602,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 548, + ] + }, + { + "pc": 708, + "op": "EQ", + "gas": 386330, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240696, - "gasCost": 3, + "0x20", + "0x20", + "0x1", + "0x1", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9020,25 +9635,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 549, + ] + }, + { + "pc": 709, + "op": "PUSH2", + "gas": 386327, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240693, - "gasCost": 3, + "0x20", + "0x20", + "0x1", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9052,26 +9667,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 551, + ] + }, + { + "pc": 712, + "op": "JUMPI", + "gas": 386324, + "gasCost": 10, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 240690, - "gasCost": 3, + "0x20", + "0x20", + "0x1", + "0x1", + "0x2ee" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9085,27 +9700,24 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 552, + ] + }, + { + "pc": 750, + "op": "JUMPDEST", + "gas": 386314, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1f", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240687, - "gasCost": 3, + "0x20", + "0x20", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9119,26 +9731,24 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 553, + ] + }, + { + "pc": 751, + "op": "PUSH1", + "gas": 386313, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240684, - "gasCost": 3, + "0x20", + "0x20", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9152,26 +9762,25 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 554, + ] + }, + { + "pc": 753, + "op": "DUP6", + "gas": 386310, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240681, - "gasCost": 10, + "0x20", + "0x20", + "0x1", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9185,27 +9794,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 557, + ] + }, + { + "pc": 754, + "op": "DUP2", + "gas": 386307, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x20", + "0x20", "0x1", - "0x26e" - ] - }, - { - "depth": 1, - "gas": 240671, - "gasCost": 1, + "0x0", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9219,25 +9827,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 622, + ] + }, + { + "pc": 755, + "op": "MSTORE", + "gas": 386304, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", + "0x20", + "0x20", + "0x1", "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240670, - "gasCost": 2, + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9251,27 +9861,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 623, + ] + }, + { + "pc": 756, + "op": "PUSH1", + "gas": 386301, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240668, - "gasCost": 2, + "0x20", + "0x20", + "0x1", + "0x0" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9283,26 +9893,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 624, + ] + }, + { + "pc": 758, + "op": "DUP2", + "gas": 386298, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240666, - "gasCost": 2, + "0x20", + "0x20", + "0x1", + "0x0", + "0x20" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9314,25 +9926,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 625, + ] + }, + { + "pc": 759, + "op": "KECCAK256", + "gas": 386295, + "gasCost": 36, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0", - "0x53" - ] - }, - { - "depth": 1, - "gas": 240664, - "gasCost": 8, + "0x20", + "0x20", + "0x1", + "0x0", + "0x20", + "0x0" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9344,24 +9960,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 626, + ] + }, + { + "pc": 760, + "op": "PUSH1", + "gas": 386259, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x2a0" - ] - }, - { - "depth": 1, - "gas": 240656, - "gasCost": 1, + "0x20", + "0x20", + "0x1", + "0x0", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9373,23 +9993,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 672, + ] + }, + { + "pc": 762, + "op": "NOT", + "gas": 386256, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 240655, - "gasCost": 3, + "0x53", + "0x20", + "0x20", + "0x1", + "0x0", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x1f" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9401,23 +10027,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 673, + ] + }, + { + "pc": 763, + "op": "DUP7", + "gas": 386253, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" - ] - }, - { - "depth": 1, - "gas": 240652, - "gasCost": 3, + "0x53", + "0x20", + "0x20", + "0x1", + "0x0", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9429,24 +10061,30 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 675, + ] + }, + { + "pc": 764, + "op": "AND", + "gas": 386250, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20" - ] - }, - { - "depth": 1, - "gas": 240649, - "gasCost": 3, + "0x20", + "0x20", + "0x1", + "0x0", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x53" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9458,9 +10096,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 676, + ] + }, + { + "pc": 765, + "op": "SWAP2", + "gas": 386247, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9468,15 +10111,14 @@ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 240646, - "gasCost": 3, + "0x20", + "0x1", + "0x0", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x40" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9488,9 +10130,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP4", - "pc": 678, + ] + }, + { + "pc": 766, + "op": "JUMPDEST", + "gas": 386244, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9499,15 +10146,13 @@ "0x53", "0x20", "0x20", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 240643, - "gasCost": 3, + "0x1", + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9519,9 +10164,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "GT", - "pc": 679, + ] + }, + { + "pc": 767, + "op": "DUP3", + "gas": 386243, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9530,16 +10180,13 @@ "0x53", "0x20", "0x20", - "0x1f", - "0x53" - ] - }, - { - "depth": 1, - "gas": 240640, - "gasCost": 3, + "0x1", + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9551,9 +10198,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 680, + ] + }, + { + "pc": 768, + "op": "DUP2", + "gas": 386240, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9562,15 +10214,14 @@ "0x53", "0x20", "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240637, - "gasCost": 3, + "0x1", + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0", + "0x40" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9582,9 +10233,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 682, + ] + }, + { + "pc": 769, + "op": "LT", + "gas": 386237, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9593,16 +10249,15 @@ "0x53", "0x20", "0x20", - "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240634, - "gasCost": 3, + "0x1", + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0", + "0x40", + "0x0" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9614,9 +10269,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "EQ", - "pc": 683, + ] + }, + { + "pc": 770, + "op": "ISZERO", + "gas": 386234, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9626,16 +10286,13 @@ "0x20", "0x20", "0x1", - "0x1", + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0", "0x1" - ] - }, - { - "depth": 1, - "gas": 240631, - "gasCost": 3, + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9647,9 +10304,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 771, "op": "PUSH2", - "pc": 684, + "gas": 386231, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9659,15 +10321,13 @@ "0x20", "0x20", "0x1", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240628, - "gasCost": 10, + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0", + "0x0" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9679,9 +10339,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 774, "op": "JUMPI", - "pc": 687, + "gas": 386228, + "gasCost": 10, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9691,16 +10356,14 @@ "0x20", "0x20", "0x1", - "0x1", - "0x2d5" - ] - }, - { - "depth": 1, - "gas": 240618, - "gasCost": 1, + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0", + "0x0", + "0x31d" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9712,9 +10375,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 725, + ] + }, + { + "pc": 775, + "op": "DUP9", + "gas": 386218, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9723,15 +10391,13 @@ "0x53", "0x20", "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240617, - "gasCost": 3, + "0x1", + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9743,9 +10409,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 726, + ] + }, + { + "pc": 776, + "op": "DUP7", + "gas": 386215, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9754,15 +10425,14 @@ "0x53", "0x20", "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240614, - "gasCost": 3, + "0x1", + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0", + "0xc0" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9774,9 +10444,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 728, + ] + }, + { + "pc": 777, + "op": "ADD", + "gas": 386212, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9786,15 +10461,14 @@ "0x20", "0x20", "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240611, - "gasCost": 3, + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0", + "0xc0", + "0x20" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9806,9 +10480,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 729, + ] + }, + { + "pc": 778, + "op": "MLOAD", + "gas": 386209, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9818,16 +10497,13 @@ "0x20", "0x20", "0x1", + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] - }, - { - "depth": 1, - "gas": 240608, - "gasCost": 3, + "0xe0" + ], "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9839,9 +10515,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MSTORE", - "pc": 730, + ] + }, + { + "pc": 779, + "op": "DUP3", + "gas": 386206, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9851,15 +10532,11 @@ "0x20", "0x20", "0x1", + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", "0x0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240605, - "gasCost": 3, + "0x4120766572797665727976657279766572797665727976657279766572797665" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9873,9 +10550,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 731, + ] + }, + { + "pc": 780, + "op": "SSTORE", + "gas": 386203, + "gasCost": 22100, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9885,13 +10567,12 @@ "0x20", "0x20", "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240602, - "gasCost": 3, + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0", + "0x4120766572797665727976657279766572797665727976657279766572797665", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9906,8 +10587,20 @@ "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" ], - "op": "DUP2", - "pc": 733, + "storage": { + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc": "4120766572797665727976657279766572797665727976657279766572797665", + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005", + "ac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac": "612073686f727420737472696e6700000000000000000000000000000000001c", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02": "0000000000000000000000000000000000000000000000000000000000000000" + } + }, + { + "pc": 781, + "op": "SWAP5", + "gas": 364103, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -9917,14 +10610,10 @@ "0x20", "0x20", "0x1", - "0x0", - "0x20" - ] - }, - { - "depth": 1, - "gas": 240599, - "gasCost": 36, + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9938,27 +10627,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "KECCAK256", - "pc": 734, + ] + }, + { + "pc": 782, + "op": "DUP5", + "gas": 364100, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", - "0x20", - "0x1", "0x0", "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240563, - "gasCost": 3, + "0x1", + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9972,26 +10661,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 735, + ] + }, + { + "pc": 783, + "op": "ADD", + "gas": 364097, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x0", "0x20", "0x1", - "0x0", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc" - ] - }, - { - "depth": 1, - "gas": 240560, - "gasCost": 3, + "0x40", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x20", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10005,27 +10696,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 737, + ] + }, + { + "pc": 784, + "op": "SWAP5", + "gas": 364094, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x0", "0x20", "0x1", - "0x0", + "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 240557, - "gasCost": 3, + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10039,27 +10730,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 738, + ] + }, + { + "pc": 785, + "op": "PUSH1", + "gas": 364091, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", - "0x0", + "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ] - }, - { - "depth": 1, - "gas": 240554, - "gasCost": 3, + "0x0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10073,28 +10764,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 739, + ] + }, + { + "pc": 787, + "op": "SWAP1", + "gas": 364088, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", - "0x0", + "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x53" - ] - }, - { - "depth": 1, - "gas": 240551, - "gasCost": 3, + "0x0", + "0x1" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10108,27 +10799,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 788, "op": "SWAP2", - "pc": 740, + "gas": 364085, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", - "0x0", + "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x40" - ] - }, - { - "depth": 1, - "gas": 240548, - "gasCost": 1, + "0x1", + "0x0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10142,27 +10834,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 741, + ] + }, + { + "pc": 789, + "op": "ADD", + "gas": 364082, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240547, - "gasCost": 3, + "0x0", + "0x1", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10176,27 +10869,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 742, + ] + }, + { + "pc": 790, + "op": "SWAP1", + "gas": 364079, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240544, - "gasCost": 3, + "0x0", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10210,28 +10903,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 743, + ] + }, + { + "pc": 791, + "op": "DUP5", + "gas": 364076, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 240541, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10245,29 +10937,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 744, + ] + }, + { + "pc": 792, + "op": "ADD", + "gas": 364073, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", "0x0", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240538, - "gasCost": 3, + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10281,28 +10972,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 745, + ] + }, + { + "pc": 793, + "op": "PUSH2", + "gas": 364070, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 240535, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10316,28 +11006,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 746, + ] + }, + { + "pc": 796, + "op": "JUMP", + "gas": 364067, + "gasCost": 8, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240532, - "gasCost": 10, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20", + "0x2fe" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10351,29 +11041,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 749, + ] + }, + { + "pc": 766, + "op": "JUMPDEST", + "gas": 364059, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x0", - "0x304" - ] - }, - { - "depth": 1, - "gas": 240522, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10387,27 +11075,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP9", - "pc": 750, + ] + }, + { + "pc": 767, + "op": "DUP3", + "gas": 364058, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0" - ] - }, - { - "depth": 1, - "gas": 240519, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10421,28 +11109,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 751, + ] + }, + { + "pc": 768, + "op": "DUP2", + "gas": 364055, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 240516, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10456,29 +11144,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 752, + ] + }, + { + "pc": 769, + "op": "LT", + "gas": 364052, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0xc0", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20", + "0x40", "0x20" - ] - }, - { - "depth": 1, - "gas": 240513, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10492,28 +11180,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 753, + ] + }, + { + "pc": 770, + "op": "ISZERO", + "gas": 364049, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0xe0" - ] - }, - { - "depth": 1, - "gas": 240510, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20", + "0x1" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10527,28 +11215,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 754, + ] + }, + { + "pc": 771, + "op": "PUSH2", + "gas": 364046, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x4120766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 240507, - "gasCost": 22100, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20", + "0x0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10562,29 +11250,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 755, + ] + }, + { + "pc": 774, + "op": "JUMPI", + "gas": 364043, + "gasCost": 10, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20", "0x0", - "0x4120766572797665727976657279766572797665727976657279766572797665", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc" - ] - }, - { - "depth": 1, - "gas": 218407, - "gasCost": 3, + "0x31d" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10598,27 +11286,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP5", - "pc": 756, + ] + }, + { + "pc": 775, + "op": "DUP9", + "gas": 364033, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0" - ] - }, - { - "depth": 1, - "gas": 218404, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10632,27 +11320,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 757, + ] + }, + { + "pc": 776, + "op": "DUP7", + "gas": 364030, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x0", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218401, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20", + "0xc0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10666,28 +11355,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 777, "op": "ADD", - "pc": 758, + "gas": 364027, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x0", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218398, - "gasCost": 3, + "0xc0", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10701,27 +11391,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP5", - "pc": 759, + ] + }, + { + "pc": 778, + "op": "MLOAD", + "gas": 364024, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x0", + "0x40", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x40" - ] - }, - { - "depth": 1, - "gas": 218395, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20", + "0x100" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10735,9 +11426,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 760, + ] + }, + { + "pc": 779, + "op": "DUP3", + "gas": 364021, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -10748,14 +11444,10 @@ "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0" - ] - }, - { - "depth": 1, - "gas": 218392, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20", + "0x7279766572797665727976657279766572797665727976657279766572797665" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10769,9 +11461,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 762, + ] + }, + { + "pc": 780, + "op": "SSTORE", + "gas": 364018, + "gasCost": 22100, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -10782,15 +11479,11 @@ "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x0", - "0x1" - ] - }, - { - "depth": 1, - "gas": 218389, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20", + "0x7279766572797665727976657279766572797665727976657279766572797665", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10805,8 +11498,21 @@ "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" ], - "op": "SWAP2", - "pc": 763, + "storage": { + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc": "4120766572797665727976657279766572797665727976657279766572797665", + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd": "7279766572797665727976657279766572797665727976657279766572797665", + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005", + "ac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac": "612073686f727420737472696e6700000000000000000000000000000000001c", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02": "0000000000000000000000000000000000000000000000000000000000000000" + } + }, + { + "pc": 781, + "op": "SWAP5", + "gas": 341918, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -10817,15 +11523,9 @@ "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc", - "0x1", - "0x0" - ] - }, - { - "depth": 1, - "gas": 218386, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10839,28 +11539,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 764, + ] + }, + { + "pc": 782, + "op": "DUP5", + "gas": 341915, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x20", "0x20", "0x1", "0x40", - "0x0", - "0x1", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc" - ] - }, - { - "depth": 1, - "gas": 218383, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10874,27 +11573,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 765, + ] + }, + { + "pc": 783, + "op": "ADD", + "gas": 341912, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x20", "0x20", "0x1", "0x40", - "0x0", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd" - ] - }, - { - "depth": 1, - "gas": 218380, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x40", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10908,27 +11608,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 766, + ] + }, + { + "pc": 784, + "op": "SWAP5", + "gas": 341909, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x20", "0x20", "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x0" - ] - }, - { - "depth": 1, - "gas": 218377, - "gasCost": 3, + "0x60" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10942,28 +11642,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 767, + ] + }, + { + "pc": 785, + "op": "PUSH1", + "gas": 341906, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x0", "0x20" - ] - }, - { - "depth": 1, - "gas": 218374, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10977,27 +11676,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 768, + ] + }, + { + "pc": 787, + "op": "SWAP1", + "gas": 341903, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218371, - "gasCost": 8, + "0x20", + "0x1" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11011,28 +11711,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 771, + ] + }, + { + "pc": 788, + "op": "SWAP2", + "gas": 341900, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x2e5" - ] - }, - { - "depth": 1, - "gas": 218363, - "gasCost": 1, + "0x1", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11046,27 +11746,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 741, + ] + }, + { + "pc": 789, + "op": "ADD", + "gas": 341897, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218362, - "gasCost": 3, + "0x20", + "0x1", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11080,27 +11781,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 742, + ] + }, + { + "pc": 790, + "op": "SWAP1", + "gas": 341894, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218359, - "gasCost": 3, + "0x20", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11114,28 +11815,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 743, + ] + }, + { + "pc": 791, + "op": "DUP5", + "gas": 341891, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x40" - ] - }, - { - "depth": 1, - "gas": 218356, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11149,29 +11849,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 744, + ] + }, + { + "pc": 792, + "op": "ADD", + "gas": 341888, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", "0x20", - "0x40", "0x20" - ] - }, - { - "depth": 1, - "gas": 218353, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11185,28 +11884,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 745, + ] + }, + { + "pc": 793, + "op": "PUSH2", + "gas": 341885, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x1" - ] - }, - { - "depth": 1, - "gas": 218350, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11220,28 +11918,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 746, + ] + }, + { + "pc": 796, + "op": "JUMP", + "gas": 341882, + "gasCost": 8, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 218347, - "gasCost": 10, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x40", + "0x2fe" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11255,29 +11953,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 749, + ] + }, + { + "pc": 766, + "op": "JUMPDEST", + "gas": 341874, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x0", - "0x304" - ] - }, - { - "depth": 1, - "gas": 218337, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11291,27 +11987,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP9", - "pc": 750, + ] + }, + { + "pc": 767, + "op": "DUP3", + "gas": 341873, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 218334, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11325,28 +12021,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP7", - "pc": 751, + ] + }, + { + "pc": 768, + "op": "DUP2", + "gas": 341870, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 218331, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x40", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11360,29 +12056,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 752, + ] + }, + { + "pc": 769, + "op": "LT", + "gas": 341867, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0xc0", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x40", + "0x40", "0x40" - ] - }, - { - "depth": 1, - "gas": 218328, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11396,28 +12092,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 753, + ] + }, + { + "pc": 770, + "op": "ISZERO", + "gas": 341864, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x100" - ] - }, - { - "depth": 1, - "gas": 218325, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x40", + "0x0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11431,28 +12127,28 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 754, + ] + }, + { + "pc": 771, + "op": "PUSH2", + "gas": 341861, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x7279766572797665727976657279766572797665727976657279766572797665" - ] - }, - { - "depth": 1, - "gas": 218322, - "gasCost": 22100, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x40", + "0x1" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11466,29 +12162,29 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 755, + ] + }, + { + "pc": 774, + "op": "JUMPI", + "gas": 341858, + "gasCost": 10, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", - "0x7279766572797665727976657279766572797665727976657279766572797665", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd" - ] - }, - { - "depth": 1, - "gas": 196222, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x40", + "0x1", + "0x31d" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11502,27 +12198,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP5", - "pc": 756, + ] + }, + { + "pc": 797, + "op": "JUMPDEST", + "gas": 341848, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x40", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196219, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11536,27 +12232,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 757, + ] + }, + { + "pc": 798, + "op": "POP", + "gas": 341847, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", "0x40" - ] - }, - { - "depth": 1, - "gas": 196216, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11570,28 +12266,26 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 758, + ] + }, + { + "pc": 799, + "op": "DUP6", + "gas": 341845, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x40", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196213, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11605,27 +12299,27 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP5", - "pc": 759, + ] + }, + { + "pc": 800, + "op": "DUP3", + "gas": 341842, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x20", + "0x60", "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x60" - ] - }, - { - "depth": 1, - "gas": 196210, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x53" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11639,9 +12333,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 760, + ] + }, + { + "pc": 801, + "op": "LT", + "gas": 341839, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11652,14 +12351,10 @@ "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196207, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x53", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11673,9 +12368,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 762, + ] + }, + { + "pc": 802, + "op": "ISZERO", + "gas": 341836, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11686,15 +12386,9 @@ "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x20", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", "0x1" - ] - }, - { - "depth": 1, - "gas": 196204, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11708,9 +12402,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP2", - "pc": 763, + ] + }, + { + "pc": 803, + "op": "PUSH2", + "gas": 341833, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11721,15 +12420,9 @@ "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd", - "0x1", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196201, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11743,9 +12436,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 764, + ] + }, + { + "pc": 806, + "op": "JUMPI", + "gas": 341830, + "gasCost": 10, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11756,15 +12454,10 @@ "0x20", "0x1", "0x40", - "0x20", - "0x1", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd" - ] - }, - { - "depth": 1, - "gas": 196198, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x0", + "0x33b" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11778,9 +12471,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 765, + ] + }, + { + "pc": 807, + "op": "DUP8", + "gas": 341820, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11791,14 +12489,8 @@ "0x20", "0x1", "0x40", - "0x20", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" - ] - }, - { - "depth": 1, - "gas": 196195, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11812,9 +12504,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP5", - "pc": 766, + ] + }, + { + "pc": 808, + "op": "DUP6", + "gas": 341817, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11826,13 +12523,8 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196192, - "gasCost": 3, + "0xc0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11846,9 +12538,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 809, "op": "ADD", - "pc": 767, + "gas": 341814, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11860,14 +12557,9 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x20", - "0x20" - ] - }, - { - "depth": 1, - "gas": 196189, - "gasCost": 3, + "0xc0", + "0x60" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11881,9 +12573,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 768, + ] + }, + { + "pc": 810, + "op": "MLOAD", + "gas": 341811, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11895,13 +12592,8 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196186, - "gasCost": 8, + "0x120" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11915,9 +12607,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 771, + ] + }, + { + "pc": 811, + "op": "PUSH1", + "gas": 341808, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11929,14 +12626,8 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x2e5" - ] - }, - { - "depth": 1, - "gas": 196178, - "gasCost": 1, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11950,9 +12641,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 741, + ] + }, + { + "pc": 813, + "op": "NOT", + "gas": 341805, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11964,13 +12660,9 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196177, - "gasCost": 3, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0x0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -11984,9 +12676,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 742, + ] + }, + { + "pc": 814, + "op": "PUSH1", + "gas": 341802, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -11998,13 +12695,9 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196174, - "gasCost": 3, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12018,9 +12711,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 743, + ] + }, + { + "pc": 816, + "op": "DUP9", + "gas": 341799, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12032,14 +12730,10 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196171, - "gasCost": 3, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12053,9 +12747,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 744, + ] + }, + { + "pc": 817, + "op": "SWAP1", + "gas": 341796, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12067,15 +12766,11 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x40", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196168, - "gasCost": 3, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3", + "0x53" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12089,9 +12784,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ISZERO", - "pc": 745, + ] + }, + { + "pc": 818, + "op": "SHL", + "gas": 341793, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12103,14 +12803,11 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x0" - ] - }, - { - "depth": 1, - "gas": 196165, - "gasCost": 3, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x53", + "0x3" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12124,9 +12821,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 746, + ] + }, + { + "pc": 819, + "op": "PUSH1", + "gas": 341790, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12138,14 +12840,10 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x1" - ] - }, - { - "depth": 1, - "gas": 196162, - "gasCost": 10, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x298" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12159,9 +12857,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 749, + ] + }, + { + "pc": 821, + "op": "AND", + "gas": 341787, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12173,15 +12876,11 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40", - "0x1", - "0x304" - ] - }, - { - "depth": 1, - "gas": 196152, - "gasCost": 1, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x298", + "0xf8" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12195,9 +12894,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 772, + ] + }, + { + "pc": 822, + "op": "SHR", + "gas": 341784, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12209,13 +12913,10 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196151, - "gasCost": 2, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x98" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12229,9 +12930,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 773, + ] + }, + { + "pc": 823, + "op": "NOT", + "gas": 341781, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12243,13 +12949,9 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196149, - "gasCost": 3, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0xffffffffffffffffffffffffff" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12263,9 +12965,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 774, + ] + }, + { + "pc": 824, + "op": "AND", + "gas": 341778, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12276,13 +12983,10 @@ "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" - ] - }, - { - "depth": 1, - "gas": 196146, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffff00000000000000000000000000" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12296,9 +13000,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP3", - "pc": 775, + ] + }, + { + "pc": 825, + "op": "DUP2", + "gas": 341775, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12310,13 +13019,8 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x53" - ] - }, - { - "depth": 1, - "gas": 196143, - "gasCost": 3, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12330,9 +13034,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "LT", - "pc": 776, + ] + }, + { + "pc": 826, + "op": "SSTORE", + "gas": 341772, + "gasCost": 22100, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12344,14 +13053,9 @@ "0x1", "0x40", "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x53", - "0x40" - ] - }, - { - "depth": 1, - "gas": 196140, - "gasCost": 3, + "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12366,8 +13070,22 @@ "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" ], - "op": "ISZERO", - "pc": 777, + "storage": { + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc": "4120766572797665727976657279766572797665727976657279766572797665", + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd": "7279766572797665727976657279766572797665727976657279766572797665", + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe": "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005", + "ac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac": "612073686f727420737472696e6700000000000000000000000000000000001c", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02": "0000000000000000000000000000000000000000000000000000000000000000" + } + }, + { + "pc": 827, + "op": "JUMPDEST", + "gas": 319672, + "gasCost": 1, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12378,14 +13096,8 @@ "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x1" - ] - }, - { - "depth": 1, - "gas": 196137, - "gasCost": 3, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12399,9 +13111,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 778, + ] + }, + { + "pc": 828, + "op": "POP", + "gas": 319671, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12412,14 +13129,8 @@ "0x20", "0x1", "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x0" - ] - }, - { - "depth": 1, - "gas": 196134, - "gasCost": 10, + "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12433,9 +13144,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPI", - "pc": 781, + ] + }, + { + "pc": 829, + "op": "POP", + "gas": 319669, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12445,16 +13161,8 @@ "0x60", "0x20", "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x0", - "0x322" - ] - }, - { - "depth": 1, - "gas": 196124, - "gasCost": 3, + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12468,9 +13176,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP8", - "pc": 782, + ] + }, + { + "pc": 830, + "op": "POP", + "gas": 319667, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12478,16 +13191,9 @@ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" - ] - }, - { - "depth": 1, - "gas": 196121, - "gasCost": 3, + "0x20", + "0x1" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12501,9 +13207,14 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP6", - "pc": 783, + ] + }, + { + "pc": 831, + "op": "POP", + "gas": 319665, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", @@ -12511,17 +13222,8 @@ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 196118, - "gasCost": 3, + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12535,28 +13237,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 784, + ] + }, + { + "pc": 832, + "op": "POP", + "gas": 319663, + "gasCost": 2, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0xc0", "0x60" - ] - }, - { - "depth": 1, - "gas": 196115, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12570,27 +13266,21 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "MLOAD", - "pc": 785, + ] + }, + { + "pc": 833, + "op": "PUSH1", + "gas": 319661, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x120" - ] - }, - { - "depth": 1, - "gas": 196112, - "gasCost": 3, + "0x53" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12604,27 +13294,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 786, + ] + }, + { + "pc": 835, + "op": "SWAP1", + "gas": 319658, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 196109, - "gasCost": 3, + "0x1" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12638,28 +13323,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 788, + ] + }, + { + "pc": 836, + "op": "DUP2", + "gas": 319655, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0x0" - ] - }, - { - "depth": 1, - "gas": 196106, - "gasCost": 3, + "0x53" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12673,28 +13352,23 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 789, + ] + }, + { + "pc": 837, + "op": "SHL", + "gas": 319652, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "depth": 1, - "gas": 196103, - "gasCost": 3, + "0x53", + "0x1" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12708,29 +13382,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP9", - "pc": 791, + ] + }, + { + "pc": 838, + "op": "ADD", + "gas": 319649, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x3" - ] - }, - { - "depth": 1, - "gas": 196100, - "gasCost": 3, + "0xa6" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12744,30 +13411,21 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 839, "op": "SWAP1", - "pc": 792, + "gas": 319646, + "gasCost": 3, + "depth": 1, "stack": [ "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0x178", "0xc0", "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x3", - "0x53" - ] - }, - { - "depth": 1, - "gas": 196097, - "gasCost": 3, + "0xa7" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12781,30 +13439,21 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 793, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x53", - "0x3" ] }, { + "pc": 840, + "op": "SSTORE", + "gas": 319643, + "gasCost": 20000, "depth": 1, - "gas": 196094, - "gasCost": 3, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0", + "0xa7", + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12819,28 +13468,27 @@ "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" ], - "op": "PUSH1", - "pc": 794, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x298" - ] + "storage": { + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc": "4120766572797665727976657279766572797665727976657279766572797665", + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd": "7279766572797665727976657279766572797665727976657279766572797665", + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe": "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005", + "ac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac": "612073686f727420737472696e6700000000000000000000000000000000001c", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02": "00000000000000000000000000000000000000000000000000000000000000a7" + } }, { + "pc": 841, + "op": "POP", + "gas": 299643, + "gasCost": 2, "depth": 1, - "gas": 196091, - "gasCost": 3, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178", + "0xc0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12853,31 +13501,19 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 796, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x298", - "0xf8" + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { + "pc": 842, + "op": "JUMP", + "gas": 299641, + "gasCost": 8, "depth": 1, - "gas": 196088, - "gasCost": 3, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0x178" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12891,29 +13527,17 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHR", - "pc": 797, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x98" ] }, { + "pc": 376, + "op": "JUMPDEST", + "gas": 299633, + "gasCost": 1, "depth": 1, - "gas": 196085, - "gasCost": 3, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12927,28 +13551,17 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "NOT", - "pc": 798, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffff" ] }, { + "pc": 377, + "op": "POP", + "gas": 299632, + "gasCost": 2, "depth": 1, - "gas": 196082, - "gasCost": 3, + "stack": [ + "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12962,28 +13575,15 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "AND", - "pc": 799, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffff00000000000000000000000000" ] }, { - "depth": 1, - "gas": 196079, + "pc": 378, + "op": "PUSH1", + "gas": 299630, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -12997,27 +13597,17 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 800, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000" ] }, { + "pc": 380, + "op": "PUSH1", + "gas": 299627, + "gasCost": 3, "depth": 1, - "gas": 196076, - "gasCost": 22100, + "stack": [ + "0x2a" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13031,28 +13621,18 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 801, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe", - "0x727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" ] }, { + "pc": 382, + "op": "PUSH1", + "gas": 299624, + "gasCost": 3, "depth": 1, - "gas": 173976, - "gasCost": 1, + "stack": [ + "0x2a", + "0x0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13066,26 +13646,19 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 802, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" ] }, { + "pc": 384, + "op": "MLOAD", + "gas": 299621, + "gasCost": 3, "depth": 1, - "gas": 173975, - "gasCost": 2, + "stack": [ + "0x2a", + "0x0", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13099,26 +13672,19 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 803, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40", - "0x2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe" ] }, { + "pc": 385, + "op": "SWAP1", + "gas": 299618, + "gasCost": 3, "depth": 1, - "gas": 173973, - "gasCost": 2, + "stack": [ + "0x2a", + "0x0", + "0x140" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13132,25 +13698,19 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 804, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1", - "0x40" ] }, { + "pc": 386, + "op": "DUP2", + "gas": 299615, + "gasCost": 3, "depth": 1, - "gas": 173971, - "gasCost": 2, + "stack": [ + "0x2a", + "0x140", + "0x0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13164,24 +13724,20 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 805, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20", - "0x1" ] }, { + "pc": 387, + "op": "MSTORE", + "gas": 299612, + "gasCost": 3, "depth": 1, - "gas": 173969, - "gasCost": 2, + "stack": [ + "0x2a", + "0x140", + "0x0", + "0x140" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13195,23 +13751,18 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "6100000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 806, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60", - "0x20" ] }, { + "pc": 388, + "op": "PUSH1", + "gas": 299609, + "gasCost": 3, "depth": 1, - "gas": 173967, - "gasCost": 2, + "stack": [ + "0x2a", + "0x140" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13223,24 +13774,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 807, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x60" ] }, { - "depth": 1, - "gas": 173965, + "pc": 390, + "op": "ADD", + "gas": 299606, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x140", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13248,27 +13796,24 @@ "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000e", "612073686f727420737472696e67000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000053", - "4120766572797665727976657279766572797665727976657279766572797665", - "7279766572797665727976657279766572797665727976657279766572797665", - "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 808, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53" + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 173962, + "pc": 391, + "op": "PUSH1", + "gas": 299603, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x160" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13280,24 +13825,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 810, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x53", - "0x1" ] }, { - "depth": 1, - "gas": 173959, + "pc": 393, + "op": "MLOAD", + "gas": 299600, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x160", + "0x40" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13309,24 +13851,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "DUP2", - "pc": 811, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1", - "0x53" ] }, { - "depth": 1, - "gas": 173956, + "pc": 394, + "op": "DUP1", + "gas": 299597, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x160", + "0x140" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13338,25 +13877,22 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SHL", - "pc": 812, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1", - "0x53", - "0x1" ] }, { - "depth": 1, - "gas": 173953, + "pc": 395, + "op": "SWAP2", + "gas": 299594, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x160", + "0x140", + "0x140" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13368,24 +13904,22 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 813, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x1", - "0xa6" ] }, { - "depth": 1, - "gas": 173950, + "pc": 396, + "op": "SUB", + "gas": 299591, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2a", + "0x140", + "0x140", + "0x160" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13397,23 +13931,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SWAP1", - "pc": 814, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0xa7" ] }, { + "pc": 397, + "op": "SWAP1", + "gas": 299588, + "gasCost": 3, "depth": 1, - "gas": 173947, - "gasCost": 20000, + "stack": [ + "0x2a", + "0x140", + "0x20" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13425,23 +13957,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "SSTORE", - "pc": 815, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0", - "0xa7", - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" ] }, { + "pc": 398, + "op": "KECCAK256", + "gas": 299585, + "gasCost": 36, "depth": 1, - "gas": 153947, - "gasCost": 2, + "stack": [ + "0x2a", + "0x20", + "0x140" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13453,21 +13983,20 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "POP", - "pc": 816, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178", - "0xc0" ] }, { + "pc": 399, + "op": "DUP2", + "gas": 299549, + "gasCost": 3, "depth": 1, - "gas": 153945, - "gasCost": 8, + "stack": [ + "0x2a", + "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13479,20 +14008,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 817, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", - "0x178" ] }, { + "pc": 400, + "op": "SWAP1", + "gas": 299546, + "gasCost": 3, "depth": 1, - "gas": 153937, - "gasCost": 1, + "stack": [ + "0x2a", + "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563", + "0x2a" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13504,19 +14034,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 376, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" ] }, { + "pc": 401, + "op": "SSTORE", + "gas": 299543, + "gasCost": 22100, "depth": 1, - "gas": 153936, - "gasCost": 2, + "stack": [ + "0x2a", + "0x2a", + "0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13528,19 +14060,29 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" ], - "op": "POP", - "pc": 377, - "stack": [ - "0xb5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02" - ] + "storage": { + "290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563": "000000000000000000000000000000000000000000000000000000000000002a", + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbc": "4120766572797665727976657279766572797665727976657279766572797665", + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbd": "7279766572797665727976657279766572797665727976657279766572797665", + "2fccf76901d0aa8dbb54cf0f8d3d8db6b27e630b57020bc913d21efd33831cbe": "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "4a8918e67ba0b26637797e1472ee3d675d66efda39253f7139f8eabc58b20ffb": "000000000000000000000000000000000000000000000000000000000000002a", + "5585ade74713b5d6d915d0f40534bd55231ae0a540289299fb117ed2c74ca466": "0000000000000000000000000000000000000000000000000000000000000005", + "ac85c8cc1ac92e94a731b8df588044cbfd366c5ee08805d198cb1b094f3cacac": "612073686f727420737472696e6700000000000000000000000000000000001c", + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02": "00000000000000000000000000000000000000000000000000000000000000a7" + } }, { + "pc": 402, + "op": "POP", + "gas": 277443, + "gasCost": 2, "depth": 1, - "gas": 153934, - "gasCost": 3, + "stack": [ + "0x2a" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13552,17 +14094,17 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 378, - "stack": [] + ] }, { - "depth": 1, - "gas": 153931, + "pc": 403, + "op": "PUSH2", + "gas": 277441, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13574,19 +14116,19 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH32", - "pc": 381, - "stack": [ - "0x3e8" ] }, { - "depth": 1, - "gas": 153928, + "pc": 406, + "op": "PUSH32", + "gas": 277438, "gasCost": 3, + "depth": 1, + "stack": [ + "0x3e8" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13598,20 +14140,20 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 414, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4" ] }, { - "depth": 1, - "gas": 153925, + "pc": 439, + "op": "PUSH1", + "gas": 277435, "gasCost": 3, + "depth": 1, + "stack": [ + "0x3e8", + "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13623,21 +14165,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 441, "op": "MLOAD", - "pc": 416, + "gas": 277432, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x40" - ] - }, - { - "depth": 1, - "gas": 153922, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13649,21 +14191,21 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 442, "op": "PUSH2", - "pc": 417, + "gas": 277429, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x140" - ] - }, - { - "depth": 1, - "gas": 153919, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13675,22 +14217,22 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 445, "op": "SWAP1", - "pc": 420, + "gas": 277426, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x140", - "0x1c7" - ] - }, - { - "depth": 1, - "gas": 153916, - "gasCost": 3, + "0x1e0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13702,22 +14244,22 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 446, "op": "PUSH1", - "pc": 421, + "gas": 277423, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140" - ] - }, - { - "depth": 1, - "gas": 153913, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13729,23 +14271,23 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 448, "op": "DUP1", - "pc": 423, + "gas": 277420, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x20" - ] - }, - { - "depth": 1, - "gas": 153910, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13757,24 +14299,24 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 449, "op": "DUP3", - "pc": 424, + "gas": 277417, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x20", "0x20" - ] - }, - { - "depth": 1, - "gas": 153907, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13786,25 +14328,25 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "6100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 450, "op": "MSTORE", - "pc": 425, + "gas": 277414, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x20", "0x20", "0x140" - ] - }, - { - "depth": 1, - "gas": 153904, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13816,23 +14358,23 @@ "4120766572797665727976657279766572797665727976657279766572797665", "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 451, "op": "PUSH1", - "pc": 426, + "gas": 277411, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x20" - ] - }, - { - "depth": 1, - "gas": 153901, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13846,22 +14388,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 453, "op": "SWAP1", - "pc": 428, + "gas": 277408, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x20", "0x9" - ] - }, - { - "depth": 1, - "gas": 153898, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13875,22 +14417,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 454, "op": "DUP3", - "pc": 429, + "gas": 277405, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x9", "0x20" - ] - }, - { - "depth": 1, - "gas": 153895, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13904,23 +14446,23 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 455, "op": "ADD", - "pc": 430, + "gas": 277402, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x9", "0x20", "0x140" - ] - }, - { - "depth": 1, - "gas": 153892, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13934,22 +14476,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0100000000000000000000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 456, "op": "MSTORE", - "pc": 431, + "gas": 277399, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x9", "0x160" - ] - }, - { - "depth": 1, - "gas": 153889, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13962,21 +14504,21 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009" - ], + "0100000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 457, "op": "PUSH9", - "pc": 432, + "gas": 277396, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140" - ] - }, - { - "depth": 1, - "gas": 153886, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -13990,21 +14532,21 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009" - ], + ] + }, + { + "pc": 467, "op": "PUSH1", - "pc": 442, + "gas": 277393, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x4576656e7444617461" - ] - }, - { - "depth": 1, - "gas": 153883, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14018,22 +14560,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009" - ], + ] + }, + { + "pc": 469, "op": "SHL", - "pc": 444, + "gas": 277390, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x4576656e7444617461", "0xb8" - ] - }, - { - "depth": 1, - "gas": 153880, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14047,21 +14589,21 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009" - ], + ] + }, + { + "pc": 470, "op": "PUSH1", - "pc": 445, + "gas": 277387, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x4576656e74446174610000000000000000000000000000000000000000000000" - ] - }, - { - "depth": 1, - "gas": 153877, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14075,22 +14617,22 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009" - ], + ] + }, + { + "pc": 472, "op": "DUP3", - "pc": 447, + "gas": 277384, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x4576656e74446174610000000000000000000000000000000000000000000000", "0x40" - ] - }, - { - "depth": 1, - "gas": 153874, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14104,23 +14646,23 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009" - ], + ] + }, + { + "pc": 473, "op": "ADD", - "pc": 448, + "gas": 277381, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x4576656e74446174610000000000000000000000000000000000000000000000", "0x40", "0x140" - ] - }, - { - "depth": 1, - "gas": 153871, - "gasCost": 6, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14133,24 +14675,23 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000000" - ], + "0000000000000000000000000000000000000000000000000000000000000009" + ] + }, + { + "pc": 474, "op": "MSTORE", - "pc": 449, + "gas": 277378, + "gasCost": 6, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140", "0x4576656e74446174610000000000000000000000000000000000000000000000", "0x180" - ] - }, - { - "depth": 1, - "gas": 153865, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14163,22 +14704,21 @@ "7279766572797665727976657279766572797665727976657279766572797665", "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000" - ], + "0000000000000000000000000000000000000000000000000000000000000009" + ] + }, + { + "pc": 475, "op": "PUSH1", - "pc": 450, + "gas": 277372, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x140" - ] - }, - { - "depth": 1, - "gas": 153862, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14193,21 +14733,21 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "ADD", - "pc": 452, - "stack": [ - "0x3e8", - "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", - "0x140", - "0x60" ] }, { - "depth": 1, - "gas": 153859, + "pc": 477, + "op": "ADD", + "gas": 277369, "gasCost": 3, + "depth": 1, + "stack": [ + "0x3e8", + "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", + "0x1e0", + "0x140", + "0x60" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14222,20 +14762,20 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 478, "op": "SWAP1", - "pc": 453, + "gas": 277366, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", - "0x1c7", + "0x1e0", "0x1a0" - ] - }, - { - "depth": 1, - "gas": 153856, - "gasCost": 8, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14250,20 +14790,20 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 479, "op": "JUMP", - "pc": 454, + "gas": 277363, + "gasCost": 8, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x1a0", - "0x1c7" - ] - }, - { - "depth": 1, - "gas": 153848, - "gasCost": 1, + "0x1e0" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14278,19 +14818,19 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 480, "op": "JUMPDEST", - "pc": 455, + "gas": 277355, + "gasCost": 1, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x1a0" - ] - }, - { - "depth": 1, - "gas": 153847, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14305,19 +14845,19 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 481, "op": "PUSH1", - "pc": 456, + "gas": 277354, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x1a0" - ] - }, - { - "depth": 1, - "gas": 153844, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14332,20 +14872,20 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 483, "op": "MLOAD", - "pc": 458, + "gas": 277351, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x1a0", "0x40" - ] - }, - { - "depth": 1, - "gas": 153841, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14360,20 +14900,20 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 484, "op": "DUP1", - "pc": 459, + "gas": 277348, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x1a0", "0x140" - ] - }, - { - "depth": 1, - "gas": 153838, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14388,21 +14928,21 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 485, "op": "SWAP2", - "pc": 460, + "gas": 277345, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x1a0", "0x140", "0x140" - ] - }, - { - "depth": 1, - "gas": 153835, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14417,21 +14957,21 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 486, "op": "SUB", - "pc": 461, + "gas": 277342, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x140", "0x140", "0x1a0" - ] - }, - { - "depth": 1, - "gas": 153832, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14446,20 +14986,20 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 487, "op": "SWAP1", - "pc": 462, + "gas": 277339, + "gasCost": 3, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x140", "0x60" - ] - }, - { - "depth": 1, - "gas": 153829, - "gasCost": 1893, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14474,20 +15014,20 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], + ] + }, + { + "pc": 488, "op": "LOG2", - "pc": 463, + "gas": 277336, + "gasCost": 1893, + "depth": 1, "stack": [ "0x3e8", "0xacbb78f2ca062de72b00a51fd02b7d615c49692953385535f98eeb1cfa8d3bf4", "0x60", "0x140" - ] - }, - { - "depth": 1, - "gas": 151936, - "gasCost": 3, + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14502,15 +15042,15 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 464, - "stack": [] + ] }, { + "pc": 489, + "op": "PUSH2", + "gas": 275443, + "gasCost": 3, "depth": 1, - "gas": 151933, - "gasCost": 8, + "stack": [], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14525,17 +15065,17 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "JUMP", - "pc": 467, - "stack": [ - "0x332" ] }, { + "pc": 492, + "op": "JUMP", + "gas": 275440, + "gasCost": 8, "depth": 1, - "gas": 151925, - "gasCost": 1, + "stack": [ + "0x34b" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14550,15 +15090,15 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "JUMPDEST", - "pc": 818, - "stack": [] + ] }, { + "pc": 843, + "op": "JUMPDEST", + "gas": 275432, + "gasCost": 1, "depth": 1, - "gas": 151924, - "gasCost": 3, + "stack": [], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14573,15 +15113,15 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 819, - "stack": [] + ] }, { - "depth": 1, - "gas": 151921, + "pc": 844, + "op": "PUSH2", + "gas": 275431, "gasCost": 3, + "depth": 1, + "stack": [], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14596,17 +15136,17 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "DUP1", - "pc": 822, - "stack": [ - "0x2f7" ] }, { - "depth": 1, - "gas": 151918, + "pc": 847, + "op": "DUP1", + "gas": 275428, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2f7" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14621,18 +15161,18 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "PUSH2", - "pc": 823, - "stack": [ - "0x2f7", - "0x2f7" ] }, { - "depth": 1, - "gas": 151915, + "pc": 848, + "op": "PUSH2", + "gas": 275425, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2f7", + "0x2f7" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14647,19 +15187,19 @@ "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", "4576656e74446174610000000000000000000000000000000000000000000000" - ], - "op": "PUSH1", - "pc": 826, - "stack": [ - "0x2f7", - "0x2f7", - "0x341" ] }, { + "pc": 851, + "op": "PUSH1", + "gas": 275422, + "gasCost": 3, "depth": 1, - "gas": 151912, - "gasCost": 109, + "stack": [ + "0x2f7", + "0x2f7", + "0x35a" + ], "memory": [ "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", "0000000000000000000000000000000000000000000000000000000000000000", @@ -14673,32 +15213,46 @@ "727976657279206c6f6e6720737472696e672e00000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000009", - "4576656e74446174610000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], + "4576656e74446174610000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 853, "op": "CODECOPY", - "pc": 828, + "gas": 275419, + "gasCost": 109, + "depth": 1, "stack": [ "0x2f7", "0x2f7", - "0x341", + "0x35a", "0x0" + ], + "memory": [ + "b5cafab5b83d18303877bb912b2d66ca18ab7390cfd9be8a2e66cc5096e0ea02", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000000e", + "612073686f727420737472696e67000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000053", + "4120766572797665727976657279766572797665727976657279766572797665", + "7279766572797665727976657279766572797665727976657279766572797665", + "727976657279206c6f6e6720737472696e672e00000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000009", + "4576656e74446174610000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 151803, + "pc": 854, + "op": "PUSH1", + "gas": 275310, "gasCost": 3, + "depth": 1, + "stack": [ + "0x2f7" + ], "memory": [ "608060405234801561001057600080fd5b50600436106100415760003560e01c", "806326121ff01461004657806332e43a111461004e578063e2179b8e14610050", @@ -14724,17 +15278,18 @@ "10156102bc5788860151825594840194600190910190840161029d565b508582", "10156102da5787850151600019600388901b60f8161c191681555b5050505050", "600190811b0190555056fea164736f6c6343000815000a000000000000000000" - ], - "op": "PUSH1", - "pc": 829, - "stack": [ - "0x2f7" ] }, { - "depth": 1, - "gas": 151800, + "pc": 856, + "op": "RETURN", + "gas": 275307, "gasCost": 0, + "depth": 1, + "stack": [ + "0x2f7", + "0x0" + ], "memory": [ "608060405234801561001057600080fd5b50600436106100415760003560e01c", "806326121ff01461004657806332e43a111461004e578063e2179b8e14610050", @@ -14760,16 +15315,10 @@ "10156102bc5788860151825594840194600190910190840161029d565b508582", "10156102da5787850151600019600388901b60f8161c191681555b5050505050", "600190811b0190555056fea164736f6c6343000815000a000000000000000000" - ], - "op": "RETURN", - "pc": 831, - "stack": [ - "0x2f7", - "0x0" ] } ] }, - "address": "0x8a791620dd6260079bf849dc5567adc3f2fdc318", - "tx_id": "0x71bc3c322a17dd2274dfd42ba0274ef4e7508bfdaaa96c41c02c09b93ef72b75" + "address": "0x5fbdb2315678afecb367f032d93f642f64180aa3", + "tx_id": "0xe3d9e7373b5ea210658b6439f1e686e5ac347b070188254ab6c71b5e75c5812c" } \ No newline at end of file From 7e31421330c4e0f1268d6fdc8449469a504a68fa Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Fri, 25 Jul 2025 17:03:08 +0200 Subject: [PATCH 5/6] Clean up --- lib/bytecode_verification/parse_json.rs | 1 - lib/state/contract_state.rs | 10 +- tests/Contracts/src/BytesMapping.sol | 2 +- tests/test_decoding.rs | 22 +- tests/test_end_to_end.rs | 257 +++++++++++------------- 5 files changed, 132 insertions(+), 160 deletions(-) diff --git a/lib/bytecode_verification/parse_json.rs b/lib/bytecode_verification/parse_json.rs index 2df1e59..c716f42 100644 --- a/lib/bytecode_verification/parse_json.rs +++ b/lib/bytecode_verification/parse_json.rs @@ -1424,7 +1424,6 @@ impl ProjectInfo { build_cache: Option<&String>, libraries: Option>, ) -> Result { - let build_info_path: PathBuf = match build_cache { Some(s) => PathBuf::from(s), None => Self::compile(project, env, artifacts_path, libraries)?, diff --git a/lib/state/contract_state.rs b/lib/state/contract_state.rs index 225ed9e..3345ad0 100644 --- a/lib/state/contract_state.rs +++ b/lib/state/contract_state.rs @@ -184,7 +184,6 @@ impl<'a> ContractState<'a> { if depth_to_address[&log.depth] == self.address { if let Some(key_in) = key { - // println!("idk where we are, but we are adding mapping key {:?}", key_in); let target_slot = &stack[stack.len() - 1]; if !self.mapping_usages.contains_key(&index) { let mut usage_set = HashSet::new(); @@ -207,7 +206,6 @@ impl<'a> ContractState<'a> { &log.memory.unwrap(), ) ); - // println!("SHA input {:?}, length {:?}", sha3_input, length_in_bytes); // Look for mapping usages if length_in_bytes >= U256::from(32_u64) && length_in_bytes < U256::from(usize::MAX / 2) @@ -217,7 +215,7 @@ impl<'a> ContractState<'a> { assert!(sha3_input.len() == usize_str_length); key = Some(sha3_input[2..usize_str_length - 64].to_string()); index = U256::from_str_radix(&sha3_input[usize_str_length - 64..], 16)?; - println!("Found key {} for index {}.", key.clone().unwrap(), index); + debug!("Found key {} for index {}.", key.clone().unwrap(), index); } } } @@ -247,7 +245,6 @@ impl<'a> ContractState<'a> { pi_types: &HashMap, zerovalue: bool, ) -> Result, ValidationError> { - println!("Prugna"); let default_values = &ForgeInspect::default_values(); // Add default types as we might need them let mut types = default_values.types.clone(); @@ -259,7 +256,6 @@ impl<'a> ContractState<'a> { let mut critical_storage_variables = Vec::::new(); for state_variable in &self.state_variables { - println!("1. Considering sv {:?}", state_variable); critical_storage_variables.extend(self.get_critical_variable( state_variable, snapshot, @@ -267,7 +263,6 @@ impl<'a> ContractState<'a> { zerovalue, )?); } - println!("Crit storage vars {:?}", critical_storage_variables); let mut storage = default_values.storage.clone(); storage.extend(pi_storage.to_owned()); @@ -278,7 +273,7 @@ impl<'a> ContractState<'a> { // debug!("Skipping default var {} because it overlaps with existing or is uninitialized.", sv.label); // continue; // } - println!("2. Considering sv {:?}", sv); + let new_critical_storage_variables = self.get_critical_variable(sv, snapshot, table, zerovalue)?; let mut has_nonzero = false; @@ -504,7 +499,6 @@ impl<'a> ContractState<'a> { .collect(); sorted_keys.sort(); for (sorted_key, target_slot) in &sorted_keys { - println!("Considering mapping key {:?} with slot {:?}", sorted_key, target_slot); let key_type = self.get_key_type(&state_variable.var_type); // Skip if key is longer than actual key type of the mapping diff --git a/tests/Contracts/src/BytesMapping.sol b/tests/Contracts/src/BytesMapping.sol index ee4931a..073cfc7 100644 --- a/tests/Contracts/src/BytesMapping.sol +++ b/tests/Contracts/src/BytesMapping.sol @@ -12,7 +12,7 @@ contract BytesMapping { x[bytes("Hello this is a test")] = 5; x[bytes("A veryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryvery long string")] = 42; b = bytes("Just some normal bytes."); - x[bytes("")] = 42; + x[bytes("")] = 42; } function f() external { diff --git a/tests/test_decoding.rs b/tests/test_decoding.rs index eddc229..14fdde2 100644 --- a/tests/test_decoding.rs +++ b/tests/test_decoding.rs @@ -57,18 +57,18 @@ mod tests { fn test_expected_results() { for contract_name in [ "BytesMapping", - "CrazyStruct", - "DynamicArrayOfStaticArray", - "Enum", - "NestedMapping", - "StaticArray", - "StaticArrayOfDynamicArray", - "StaticArrayOfStaticArray", - "StaticArrayOfStruct", - "StaticInMapping", + // "CrazyStruct", + // "DynamicArrayOfStaticArray", + // "Enum", + // "NestedMapping", + // "StaticArray", + // "StaticArrayOfDynamicArray", + // "StaticArrayOfStaticArray", + // "StaticArrayOfStruct", + // "StaticInMapping", "StringMapping", - "StructInMapping", - "StructInStruct", + // "StructInMapping", + // "StructInStruct", ] { let path = format!("./tests/data/trace_{}.json", contract_name); println!("Reading {}", path); diff --git a/tests/test_end_to_end.rs b/tests/test_end_to_end.rs index d2f0d22..e2ef266 100644 --- a/tests/test_end_to_end.rs +++ b/tests/test_end_to_end.rs @@ -11,7 +11,6 @@ mod tests { use std::io::Write; use std::panic; use std::path::Path; - use std::path::PathBuf; use std::process::{Child, Command as SimpleCommand, Stdio}; use std::thread::sleep; use std::time::Duration; @@ -55,18 +54,6 @@ mod tests { } } - struct CleanupGuard { - path: PathBuf, - } - - impl Drop for CleanupGuard { - fn drop(&mut self) { - if self.path.exists() { - Command::new("rm").arg(&self.path).assert(); - } - } - } - fn chain_id_str(client_type: LocalClientType) -> String { match client_type { LocalClientType::Anvil => String::from("31337"), @@ -311,47 +298,47 @@ mod tests { updated: String::from("tests/expected_dvfs/Deploy_0_updated.dvf.json"), }); - // testcases.push(TestCaseE2EUpdate { - // script: String::from("script/Deploy_1.s.sol"), - // contract: String::from("StringMapping"), - // expected: String::from("tests/expected_dvfs/Deploy_1_b1.dvf.json"), - // updated: String::from("tests/expected_dvfs/Deploy_1_updated.dvf.json"), - // }); - - // // testcases.push(TestCaseE2EUpdate { - // // script: String::from("script/Deploy_2.s.sol"), - // // contract: String::from("CrazyStruct"), - // // expected: String::from("tests/expected_dvfs/Deploy_2_b1.dvf.json"), - // // updated: String::from("tests/expected_dvfs/Deploy_2_updated.dvf.json"), - // // }); + testcases.push(TestCaseE2EUpdate { + script: String::from("script/Deploy_1.s.sol"), + contract: String::from("StringMapping"), + expected: String::from("tests/expected_dvfs/Deploy_1_b1.dvf.json"), + updated: String::from("tests/expected_dvfs/Deploy_1_updated.dvf.json"), + }); // testcases.push(TestCaseE2EUpdate { - // script: String::from("script/Deploy_3.s.sol"), - // contract: String::from("StructInEvent"), - // expected: String::from("tests/expected_dvfs/Deploy_3_b1.dvf.json"), - // updated: String::from("tests/expected_dvfs/Deploy_3_updated.dvf.json"), + // script: String::from("script/Deploy_2.s.sol"), + // contract: String::from("CrazyStruct"), + // expected: String::from("tests/expected_dvfs/Deploy_2_b1.dvf.json"), + // updated: String::from("tests/expected_dvfs/Deploy_2_updated.dvf.json"), // }); - // testcases.push(TestCaseE2EUpdate { - // script: String::from("script/Deploy_4.s.sol"), - // contract: String::from("StaticArrayOfDynamicArray"), - // expected: String::from("tests/expected_dvfs/Deploy_4_b1.dvf.json"), - // updated: String::from("tests/expected_dvfs/Deploy_4_updated.dvf.json"), - // }); + testcases.push(TestCaseE2EUpdate { + script: String::from("script/Deploy_3.s.sol"), + contract: String::from("StructInEvent"), + expected: String::from("tests/expected_dvfs/Deploy_3_b1.dvf.json"), + updated: String::from("tests/expected_dvfs/Deploy_3_updated.dvf.json"), + }); - // testcases.push(TestCaseE2EUpdate { - // script: String::from("script/Deploy_5.s.sol"), - // contract: String::from("NestedMapping"), - // expected: String::from("tests/expected_dvfs/Deploy_5_b1.dvf.json"), - // updated: String::from("tests/expected_dvfs/Deploy_5_updated.dvf.json"), - // }); + testcases.push(TestCaseE2EUpdate { + script: String::from("script/Deploy_4.s.sol"), + contract: String::from("StaticArrayOfDynamicArray"), + expected: String::from("tests/expected_dvfs/Deploy_4_b1.dvf.json"), + updated: String::from("tests/expected_dvfs/Deploy_4_updated.dvf.json"), + }); - // testcases.push(TestCaseE2EUpdate { - // script: String::from("script/Deploy_6.s.sol"), - // contract: String::from("Enum"), - // expected: String::from("tests/expected_dvfs/Deploy_6_b1.dvf.json"), - // updated: String::from("tests/expected_dvfs/Deploy_6_updated.dvf.json"), - // }); + testcases.push(TestCaseE2EUpdate { + script: String::from("script/Deploy_5.s.sol"), + contract: String::from("NestedMapping"), + expected: String::from("tests/expected_dvfs/Deploy_5_b1.dvf.json"), + updated: String::from("tests/expected_dvfs/Deploy_5_updated.dvf.json"), + }); + + testcases.push(TestCaseE2EUpdate { + script: String::from("script/Deploy_6.s.sol"), + contract: String::from("Enum"), + expected: String::from("tests/expected_dvfs/Deploy_6_b1.dvf.json"), + updated: String::from("tests/expected_dvfs/Deploy_6_updated.dvf.json"), + }); for testcase in testcases { let url = format!("http://localhost:{}", port).to_string(); @@ -377,7 +364,7 @@ mod tests { &String::from_utf8_lossy(&forge_assert.get_output().stdout) ); - let outfile = String::from("./empty.dvf.json"); + let outfile = NamedTempFile::new().unwrap(); let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); let assert = dvf_cmd .args(&[ @@ -394,7 +381,7 @@ mod tests { &testcase.contract, "--initblock", "2", - &outfile, + &outfile.path().to_string_lossy(), ]) .assert() .success(); @@ -403,90 +390,87 @@ mod tests { // Uncomment to regenerate expected files // std::fs::copy(outfile.path(), Path::new(&testcase.expected)).unwrap(); - // assert_eq_files(&outfile, &Path::new(&testcase.expected)); - - // // Sign - // let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); - // let assert = dvf_cmd - // .args(&[ - // "--config", - // &config_file.path().to_string_lossy(), - // "sign", - // &outfile.path().to_string_lossy(), - // ]) - // .assert() - // .success(); - // println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); - - // // Validate - // let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); - // let assert = dvf_cmd - // .args(&[ - // "--config", - // &config_file.path().to_string_lossy(), - // "validate", - // "--validationblock", - // "2", - // &outfile.path().to_string_lossy(), - // ]) - // .assert() - // .success(); - // println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); - - // // Update - // let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); - // let assert = dvf_cmd - // .args(&[ - // "--config", - // &config_file.path().to_string_lossy(), - // "update", - // "--validationblock", - // "5", - // &outfile.path().to_string_lossy(), - // ]) - // .assert() - // .success(); - // println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); - - // let updated_path = format!("{}_updated.dvf.json", outfile.path().to_string_lossy()); - - // // Uncomment to regenerate expected files - // // std::fs::copy(Path::new(&updated_path), Path::new(&testcase.updated)).unwrap(); - - // assert_eq_files(&Path::new(&updated_path), &Path::new(&testcase.updated)); - - // // Sign - // let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); - // let assert = dvf_cmd - // .args(&[ - // "--config", - // &config_file.path().to_string_lossy(), - // "sign", - // &updated_path, - // ]) - // .assert() - // .success(); - // println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); - - // // Validate - // let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); - // let assert = dvf_cmd - // .args(&[ - // "--config", - // &config_file.path().to_string_lossy(), - // "validate", - // "--validationblock", - // "5", - // &updated_path, - // ]) - // .assert() - // .success(); - // println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); + assert_eq_files(&outfile.path(), &Path::new(&testcase.expected)); - drop(local_client); + // Sign + let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); + let assert = dvf_cmd + .args(&[ + "--config", + &config_file.path().to_string_lossy(), + "sign", + &outfile.path().to_string_lossy(), + ]) + .assert() + .success(); + println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); - // TODO REMOVE - break; + // Validate + let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); + let assert = dvf_cmd + .args(&[ + "--config", + &config_file.path().to_string_lossy(), + "validate", + "--validationblock", + "2", + &outfile.path().to_string_lossy(), + ]) + .assert() + .success(); + println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); + + // Update + let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); + let assert = dvf_cmd + .args(&[ + "--config", + &config_file.path().to_string_lossy(), + "update", + "--validationblock", + "5", + &outfile.path().to_string_lossy(), + ]) + .assert() + .success(); + println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); + + let updated_path = format!("{}_updated.dvf.json", outfile.path().to_string_lossy()); + + // Uncomment to regenerate expected files + // std::fs::copy(Path::new(&updated_path), Path::new(&testcase.updated)).unwrap(); + + assert_eq_files(&Path::new(&updated_path), &Path::new(&testcase.updated)); + + // Sign + let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); + let assert = dvf_cmd + .args(&[ + "--config", + &config_file.path().to_string_lossy(), + "sign", + &updated_path, + ]) + .assert() + .success(); + println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); + + // Validate + let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); + let assert = dvf_cmd + .args(&[ + "--config", + &config_file.path().to_string_lossy(), + "validate", + "--validationblock", + "5", + &updated_path, + ]) + .assert() + .success(); + println!("{}", &String::from_utf8_lossy(&assert.get_output().stdout)); + + drop(local_client); } } } @@ -680,12 +664,6 @@ mod tests { let mut new_dvf_path = config.dvf_storage.clone(); new_dvf_path.push("MyToken.dvf.json"); outfile.persist(new_dvf_path.as_path()).unwrap(); - println!("persisting in {:?}", new_dvf_path.as_path()); - - // this will clean up the file even if the test fails mid-way - let cleanup = CleanupGuard { - path: new_dvf_path.clone(), - }; let proxy_outfile = NamedTempFile::new().unwrap(); let mut dvf_cmd = Command::cargo_bin("dv").unwrap(); @@ -767,7 +745,8 @@ mod tests { .success(); // Remove MyToken.dvf.json - drop(cleanup); + let mut rm_cmd = Command::new("rm"); + rm_cmd.arg(new_dvf_path.as_path()).assert().success(); drop(local_client); } From 461cf470a8ab904073b20737340254e1c2e8ea19 Mon Sep 17 00:00:00 2001 From: GiovanniTorrisi-ChainSecurity Date: Sat, 26 Jul 2025 06:21:04 +0200 Subject: [PATCH 6/6] Fix decodign test --- lib/web3.rs | 16 ++++++++++++---- src/gentest.rs | 1 + tests/test_decoding.rs | 22 +++++++++++----------- 3 files changed, 24 insertions(+), 15 deletions(-) diff --git a/lib/web3.rs b/lib/web3.rs index a20e02a..ca56b51 100644 --- a/lib/web3.rs +++ b/lib/web3.rs @@ -31,14 +31,22 @@ const NUM_STORAGE_QUERIES: u64 = 32; const LARGE_BLOCK_RANGE: u64 = 100000; mod pathological_rpc_deserde { - use serde::{self, Deserialize}; + use serde::{de::Error, Deserialize}; pub fn deserialize<'de, D>(deserializer: D) -> Result where - D: super::Deserializer<'de>, + D: serde::Deserializer<'de>, { - let s = String::deserialize(deserializer)?; - u64::from_str_radix(s.trim_start_matches("0x"), 16).map_err(serde::de::Error::custom) + let value = serde_json::Value::deserialize(deserializer)?; + match value { + serde_json::Value::Number(n) => { + n.as_u64().ok_or_else(|| Error::custom("Invalid number")) + } + serde_json::Value::String(s) => { + u64::from_str_radix(s.trim_start_matches("0x"), 16).map_err(Error::custom) + } + _ => Err(Error::custom("Expected a hex string or integer")), + } } } diff --git a/src/gentest.rs b/src/gentest.rs index b3f0774..f318a5c 100644 --- a/src/gentest.rs +++ b/src/gentest.rs @@ -52,6 +52,7 @@ fn main() { Arg::new("chainid") .long("chainid") .help("Chain ID") + .value_parser(clap::value_parser!(u64)) .action(ArgAction::Set), ) .get_matches(); diff --git a/tests/test_decoding.rs b/tests/test_decoding.rs index 14fdde2..eddc229 100644 --- a/tests/test_decoding.rs +++ b/tests/test_decoding.rs @@ -57,18 +57,18 @@ mod tests { fn test_expected_results() { for contract_name in [ "BytesMapping", - // "CrazyStruct", - // "DynamicArrayOfStaticArray", - // "Enum", - // "NestedMapping", - // "StaticArray", - // "StaticArrayOfDynamicArray", - // "StaticArrayOfStaticArray", - // "StaticArrayOfStruct", - // "StaticInMapping", + "CrazyStruct", + "DynamicArrayOfStaticArray", + "Enum", + "NestedMapping", + "StaticArray", + "StaticArrayOfDynamicArray", + "StaticArrayOfStaticArray", + "StaticArrayOfStruct", + "StaticInMapping", "StringMapping", - // "StructInMapping", - // "StructInStruct", + "StructInMapping", + "StructInStruct", ] { let path = format!("./tests/data/trace_{}.json", contract_name); println!("Reading {}", path);